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/dropdown/demo/trigger.vue

41 lines
868 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<docs>
---
order: 3
title:
zh-CN: 触发方式
en-US: Trigger mode
---
## zh-CN
默认是移入触发菜单可以点击触发
## en-US
The default trigger mode is `hover`, you can change it to `click`.
</docs>
<template>
<a-dropdown :trigger="['click']">
<a class="ant-dropdown-link" @click.prevent>
Click me
<DownOutlined />
</a>
<template #overlay>
<a-menu>
<a-menu-item key="0">
<a href="http://www.alipay.com/">1st menu item</a>
</a-menu-item>
<a-menu-item key="1">
<a href="http://www.taobao.com/">2nd menu item</a>
</a-menu-item>
<a-menu-divider />
<a-menu-item key="3">3rd menu item</a-menu-item>
</a-menu>
</template>
</a-dropdown>
</template>
<script lang="ts" setup>
import { DownOutlined } from '@ant-design/icons-vue';
</script>