mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-05 05:29:01 +08:00
775 B
775 B
#### 自定义样式
使用 style 和 className 来定义样式。
#### Customized style
The style and className are available to customize Notification.
<template>
<a-button type="primary" @click="openNotification">Open the notification box</a-button>
</template>
<script>
import { notification } from 'antd'
export default {
methods: {
openNotification () {
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>