82 lines
2.2 KiB
Vue
82 lines
2.2 KiB
Vue
<template>
|
|
<div id="nav">
|
|
<div style="width: 200px">
|
|
|
|
<el-menu
|
|
default-active="2"
|
|
class="el-menu-vertical-demo"
|
|
@open="handleOpen"
|
|
@close="handleClose"
|
|
background-color="#545c64"
|
|
text-color="#fff"
|
|
active-text-color="#ffd04b"
|
|
style="height: 100vh"
|
|
|
|
>
|
|
<el-submenu index="1">
|
|
<template slot="title">
|
|
<i class="el-icon-location"></i>
|
|
<span>导航一</span>
|
|
</template>
|
|
<el-menu-item-group>
|
|
<template slot="title">分组一</template>
|
|
<el-menu-item index="1-1" @click="$router.push('/index')">index</el-menu-item>
|
|
<el-menu-item index="1-2" @click="$router.push('/user')">user</el-menu-item>
|
|
<el-menu-item index="1-3" @click="$router.push('/login')">login</el-menu-item>
|
|
<el-menu-item index="1-4" @click="$router.push('/nav')">nav</el-menu-item>
|
|
</el-menu-item-group>
|
|
<el-menu-item-group title="分组2">
|
|
<el-menu-item index="1-5">选项5</el-menu-item>
|
|
</el-menu-item-group>
|
|
<el-submenu index="1-6">
|
|
<template slot="title">选项6</template>
|
|
<el-menu-item index="1-6-1">选项1</el-menu-item>
|
|
</el-submenu>
|
|
</el-submenu>
|
|
<el-menu-item index="2" >
|
|
<i class="el-icon-menu"></i>
|
|
<span slot="title">导航二</span>
|
|
</el-menu-item>
|
|
<el-menu-item index="3" disabled>
|
|
<i class="el-icon-document"></i>
|
|
<span slot="title">导航三</span>
|
|
</el-menu-item>
|
|
<el-menu-item index="4" >
|
|
<i class="el-icon-setting"></i>
|
|
<span slot="title">导航四</span>
|
|
</el-menu-item>
|
|
</el-menu>
|
|
|
|
</div>
|
|
<div class="right">
|
|
<router-view></router-view>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "PageNav",
|
|
methods: {
|
|
handleOpen(key, keyPath) {
|
|
console.log(key, keyPath);
|
|
},
|
|
handleClose(key, keyPath) {
|
|
console.log(key, keyPath);
|
|
},
|
|
er() {
|
|
|
|
}
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style scoped>
|
|
#nav {
|
|
display: flex;
|
|
}
|
|
.right {
|
|
width: 100%;
|
|
background: gainsboro;
|
|
}
|
|
</style> |