mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-02 07:06:37 +08:00
32 lines
1020 B
Vue
32 lines
1020 B
Vue
|
|
<template>
|
||
|
|
<el-menu
|
||
|
|
:default-active="activeIndex"
|
||
|
|
class="el-menu-demo"
|
||
|
|
mode="horizontal"
|
||
|
|
@select="handleSelect"
|
||
|
|
>
|
||
|
|
<el-menu-item index="1">Processing Center</el-menu-item>
|
||
|
|
<el-sub-menu index="2">
|
||
|
|
<template #title>Workspace</template>
|
||
|
|
<el-menu-item index="2-1">item one</el-menu-item>
|
||
|
|
<el-menu-item index="2-2">item two</el-menu-item>
|
||
|
|
<el-menu-item index="2-3">item three</el-menu-item>
|
||
|
|
<el-sub-menu index="2-4">
|
||
|
|
<template #title>item four</template>
|
||
|
|
<el-menu-item index="2-4-1">item one</el-menu-item>
|
||
|
|
<el-menu-item index="2-4-2">item two</el-menu-item>
|
||
|
|
<el-menu-item index="2-4-3">item three</el-menu-item>
|
||
|
|
</el-sub-menu>
|
||
|
|
</el-sub-menu>
|
||
|
|
<el-menu-item index="3" disabled>Info</el-menu-item>
|
||
|
|
<el-menu-item index="4">Orders</el-menu-item>
|
||
|
|
</el-menu>
|
||
|
|
|
||
|
|
</template>
|
||
|
|
<script setup>
|
||
|
|
import { ref } from 'vue'
|
||
|
|
const activeIndex = ref('1')
|
||
|
|
const handleSelect = (key, keyPath) => {
|
||
|
|
console.log(key, keyPath)
|
||
|
|
}
|
||
|
|
</script>
|