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.
95 lines
2.0 KiB
95 lines
2.0 KiB
<docs>
|
|
---
|
|
order: 3
|
|
title:
|
|
zh-CN: 垂直菜单
|
|
en-US: Vertical menu
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
子菜单是弹出的形式。
|
|
|
|
## en-US
|
|
|
|
Submenus open as pop-ups.
|
|
|
|
</docs>
|
|
|
|
<template>
|
|
<a-menu
|
|
v-model:openKeys="openKeys"
|
|
v-model:selectedKeys="selectedKeys"
|
|
style="width: 256px"
|
|
mode="vertical"
|
|
@click="handleClick"
|
|
>
|
|
<a-menu-item key="1">
|
|
<template #icon>
|
|
<MailOutlined />
|
|
</template>
|
|
Navigation One
|
|
</a-menu-item>
|
|
<a-menu-item key="2">
|
|
<template #icon>
|
|
<CalendarOutlined />
|
|
</template>
|
|
Navigation Two
|
|
</a-menu-item>
|
|
<a-sub-menu key="sub1">
|
|
<template #icon>
|
|
<AppstoreOutlined />
|
|
</template>
|
|
<template #title>Navigation Three</template>
|
|
<a-menu-item key="3">Option 3</a-menu-item>
|
|
<a-menu-item key="4">Option 4</a-menu-item>
|
|
<a-sub-menu key="sub1-2" title="Submenu">
|
|
<a-menu-item key="5">Option 5</a-menu-item>
|
|
<a-menu-item key="6">Option 6</a-menu-item>
|
|
</a-sub-menu>
|
|
</a-sub-menu>
|
|
<a-sub-menu key="sub2">
|
|
<template #icon>
|
|
<SettingOutlined />
|
|
</template>
|
|
<template #title>Navigation Four</template>
|
|
<a-menu-item key="7">Option 7</a-menu-item>
|
|
<a-menu-item key="8">Option 8</a-menu-item>
|
|
<a-menu-item key="9">Option 9</a-menu-item>
|
|
<a-menu-item key="10">Option 10</a-menu-item>
|
|
</a-sub-menu>
|
|
</a-menu>
|
|
</template>
|
|
<script lang="ts">
|
|
import { defineComponent, reactive, toRefs } from 'vue';
|
|
import {
|
|
MailOutlined,
|
|
CalendarOutlined,
|
|
AppstoreOutlined,
|
|
SettingOutlined,
|
|
} from '@ant-design/icons-vue';
|
|
import type { MenuProps } from 'ant-design-vue';
|
|
|
|
export default defineComponent({
|
|
components: {
|
|
MailOutlined,
|
|
CalendarOutlined,
|
|
AppstoreOutlined,
|
|
SettingOutlined,
|
|
},
|
|
setup() {
|
|
const state = reactive({
|
|
selectedKeys: [],
|
|
openKeys: [],
|
|
});
|
|
const handleClick: MenuProps['onClick'] = menuInfo => {
|
|
console.log('click ', menuInfo);
|
|
};
|
|
return {
|
|
...toRefs(state),
|
|
handleClick,
|
|
};
|
|
},
|
|
});
|
|
</script>
|