🌈 An enterprise-class UI components based on Ant Design and Vue. 🐜
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.
 
 
 
 

49 lines
1.0 KiB

<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 scoped>
.notification-custom-class {
color: red;
}
</style>