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.
50 lines
1017 B
50 lines
1017 B
<docs>
|
|
---
|
|
order: 5
|
|
title:
|
|
zh-CN: 自定义样式
|
|
en-US: Customized style
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
使用 `style` 和 `class` 来定义样式。
|
|
|
|
## en-US
|
|
|
|
The `style` and `class` 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`,
|
|
},
|
|
class: 'notification-custom-class',
|
|
});
|
|
};
|
|
return {
|
|
openNotification,
|
|
};
|
|
},
|
|
});
|
|
</script>
|
|
<style>
|
|
.notification-custom-class {
|
|
color: red;
|
|
}
|
|
</style>
|