You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
731 B
35 lines
731 B
4 years ago
|
<cn>
|
||
|
#### 自定义样式
|
||
|
使用 style 和 className 来定义样式。
|
||
|
</cn>
|
||
|
|
||
|
<us>
|
||
|
#### Customized style
|
||
|
The style and className are available to customize Notification.
|
||
|
</us>
|
||
|
|
||
|
```vue
|
||
|
<template>
|
||
|
<a-button type="primary" @click="openNotification">
|
||
|
Open the notification box
|
||
|
</a-button>
|
||
|
</template>
|
||
|
<script>
|
||
|
export default {
|
||
|
methods: {
|
||
|
openNotification() {
|
||
|
this.$notification.open({
|
||
|
message: 'Notification Title',
|
||
|
description:
|
||
|
'This is the content of the notification. This is the content of the notification. This is the content of the notification.',
|
||
|
style: {
|
||
|
width: '600px',
|
||
|
marginLeft: `${335 - 600}px`,
|
||
|
},
|
||
|
});
|
||
|
},
|
||
|
},
|
||
|
};
|
||
|
</script>
|
||
|
```
|