mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-06 05:59:46 +08:00
48 lines
1.2 KiB
Markdown
48 lines
1.2 KiB
Markdown
<cn>
|
|
#### 位置
|
|
可以设置通知从右上角、右下角、左下角、左上角弹出。
|
|
</cn>
|
|
|
|
<us>
|
|
#### Placement
|
|
A notification box can pop up from `topRight` or `bottomRight` or `bottomLeft` or `topLeft`.
|
|
</us>
|
|
|
|
```tpl
|
|
<template>
|
|
<div>
|
|
<a-select v-model="selected" :style="{ width: '120px', marginRight: '10px' }">
|
|
<a-select-option v-for="val in options" :key="val" :value="val">{{val}}</a-select-option>
|
|
</a-select>
|
|
<a-button type="primary" @click="openNotification">Open the notification box</a-button>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
const options = ['topLeft', 'topRight', 'bottomLeft', 'bottomRight'];
|
|
export default {
|
|
data() {
|
|
return {
|
|
options,
|
|
selected: 'topRight',
|
|
};
|
|
},
|
|
watch: {
|
|
selected(val) {
|
|
this.$notification.config({
|
|
placement: val,
|
|
});
|
|
},
|
|
},
|
|
methods: {
|
|
openNotification(val) {
|
|
this.$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.',
|
|
});
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
```
|