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.
ant-design-vue/components/notification/demo/custom-icon.md

31 lines
684 B

7 years ago
<cn>
#### 自定义图标
图标可以被自定义。
</cn>
<us>
#### Customized Icon
The icon can be customized to any vue node or (h) => vue node.
</us>
```html
<template>
<a-button type="primary" @click="openNotification">Open the notification box</a-button>
</template>
<script>
export default {
methods: {
openNotification () {
this.$notification.open({
7 years ago
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.',
icon: <a-icon type="smile" style="color: #108ee9" />,
7 years ago
});
},
}
}
</script>
```