64 lines
1.7 KiB
Vue
64 lines
1.7 KiB
Vue
<template>
|
|
<el-menu active-text-color="#ffd04b" background-color="#151513" class="el-menu-vertical" default-active="2"
|
|
text-color="#fff" :collapse="isCollapse" @open="handleOpen" @close="handleClose">
|
|
<el-sub-menu index="1">
|
|
<template #title>
|
|
<el-icon>
|
|
<Location />
|
|
</el-icon>
|
|
<span>Navigator One</span>
|
|
</template>
|
|
<el-menu-item-group title="Group One">
|
|
<el-menu-item index="1-1">item one</el-menu-item>
|
|
<el-menu-item index="1-2">item two</el-menu-item>
|
|
</el-menu-item-group>
|
|
<el-menu-item-group title="Group Two">
|
|
<el-menu-item index="1-3">item three</el-menu-item>
|
|
</el-menu-item-group>
|
|
<el-sub-menu index="1-4">
|
|
<template #title>item four</template>
|
|
<el-menu-item index="1-4-1">item one</el-menu-item>
|
|
</el-sub-menu>
|
|
</el-sub-menu>
|
|
<el-menu-item index="2">
|
|
<el-icon>
|
|
<IconMenu />
|
|
</el-icon>
|
|
<span>Navigator Two</span>
|
|
</el-menu-item>
|
|
<el-menu-item index="3" disabled>
|
|
<el-icon>
|
|
<Document />
|
|
</el-icon>
|
|
<span>Navigator Three</span>
|
|
</el-menu-item>
|
|
<el-menu-item index="4">
|
|
<el-icon>
|
|
<setting />
|
|
</el-icon>
|
|
<span>Navigator Four</span>
|
|
</el-menu-item>
|
|
</el-menu>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { Location, Menu as IconMenu, Document, Setting } from '@element-plus/icons-vue'
|
|
// import { ref } from 'vue'
|
|
|
|
const isCollapse = false
|
|
// const isCollapse = ref(true)
|
|
const handleOpen = (key, keyPath) => {
|
|
console.log(key, keyPath)
|
|
}
|
|
const handleClose = (key, keyPath) => {
|
|
console.log(key, keyPath)
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.el-menu-vertical {
|
|
height: 100%;
|
|
border: 0;
|
|
}
|
|
</style>
|