44 lines
911 B
Vue
44 lines
911 B
Vue
|
<docs>
|
||
|
---
|
||
|
order: 5
|
||
|
title:
|
||
|
zh-CN: 自定义样式
|
||
|
en-US: Customized style
|
||
|
---
|
||
|
|
||
|
## zh-CN
|
||
|
|
||
|
使用 style 和 className 来定义样式。
|
||
|
|
||
|
## en-US
|
||
|
|
||
|
The style and className are available to customize Notification.
|
||
|
|
||
|
</docs>
|
||
|
|
||
|
<template>
|
||
|
<a-button type="primary" @click="openNotification">Open the notification box</a-button>
|
||
|
</template>
|
||
|
<script>
|
||
|
import { notification } from 'ant-design-vue';
|
||
|
import { defineComponent } from 'vue';
|
||
|
export default defineComponent({
|
||
|
setup() {
|
||
|
const 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`,
|
||
|
},
|
||
|
});
|
||
|
};
|
||
|
return {
|
||
|
openNotification,
|
||
|
};
|
||
|
},
|
||
|
});
|
||
|
</script>
|