<docs>
---
order: 6
title:
zh-CN: 位置
en-US: Placement
## zh-CN
可以设置通知从右上角、右下角、左下角、左上角弹出。
## en-US
A notification box can pop up from `topRight` or `bottomRight` or `bottomLeft` or `topLeft`.
</docs>
<template>
<div>
<a-button type="primary" @click="openNotification('topLeft')">
<radius-upleft-outlined />
topLeft
</a-button>
<a-button type="primary" @click="openNotification('topRight')">
<radius-upright-outlined />
topRight
<a-divider />
<a-button type="primary" @click="openNotification('bottomLeft')">
<radius-bottomleft-outlined />
bottomLeft
<a-button type="primary" @click="openNotification('bottomRight')">
<radius-bottomright-outlined />
bottomRight
</div>
</template>
<script lang="ts">
import {
RadiusUpleftOutlined,
RadiusUprightOutlined,
RadiusBottomleftOutlined,
RadiusBottomrightOutlined,
} from '@ant-design/icons-vue';
import { notification } from 'ant-design-vue';
import { defineComponent } from 'vue';
import type { NotificationPlacement } from 'ant-design-vue';
export default defineComponent({
components: {
},
setup() {
const openNotification = (placement: NotificationPlacement) => {
notification.open({
message: `Notification ${placement}`,
description:
'This is the content of the notification. This is the content of the notification. This is the content of the notification.',
placement,
});
};
return {
openNotification,
</script>