ant-design-vue/antdv-demo/docs/dropdown/demo/index.vue

56 lines
1.6 KiB
Vue

<script>
import Basic from './basic';
import ContextMenu from './context-menu';
import DropdownButton from './dropdown-button';
import Event from './event';
import Item from './item';
import OverlayVisible from './overlay-visible';
import Placement from './placement';
import SubMenu from './sub-menu';
import Trigger from './trigger';
import CN from '../index.zh-CN.md';
import US from '../index.en-US.md';
const md = {
cn: `# 下拉菜单
向下弹出的列表。
## 何时使用
当页面上的操作命令过多时,用此组件可以收纳操作元素。点击或移入触点,会出现一个下拉菜单。可在列表中进行选择,并执行相应的命令。
## 代码演示`,
us: `# Dropdown
A dropdown list.
## When To Use
When there are more than a few options to choose from, you can wrap them in a \`Dropdown\`. By hovering or clicking on the trigger, a dropdown menu will appear, which allows you to choose an option and execute the relevant action.
## Examples
`,
};
export default {
category: 'Components',
subtitle: '下拉菜单',
type: 'Navigation',
zhType: '导航',
title: 'Dropdown',
render() {
return (
<div>
<md cn={md.cn} us={md.us} />
<demo-sort>
<Basic />
<ContextMenu />
<DropdownButton />
<Event />
<Item />
<OverlayVisible />
<Placement />
<SubMenu />
<Trigger />
</demo-sort>
<api>
<CN slot="cn" />
<US />
</api>
</div>
);
},
};
</script>