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.
43 lines
812 B
43 lines
812 B
<script setup> |
|
import { |
|
Document, |
|
Menu as IconMenu, |
|
Location, |
|
Setting, |
|
} from '@element-plus/icons-vue' |
|
import {useRoute} from "vue-router"; |
|
|
|
const route = useRoute() |
|
|
|
</script> |
|
|
|
<template> |
|
<el-row class="tac"> |
|
<el-col :span="25"> |
|
<h5 class="mb-2">鼎新工具集</h5> |
|
<el-menu |
|
default-active="1" |
|
router |
|
class="el-menu-vertical-demo" |
|
> |
|
<el-menu-item index="update"> |
|
<el-icon> |
|
<icon-menu/> |
|
</el-icon> |
|
<span>影院列表</span> |
|
</el-menu-item> |
|
<el-menu-item index="mock"> |
|
<el-icon> |
|
<icon-menu/> |
|
</el-icon> |
|
<span>专资接口模拟</span> |
|
</el-menu-item> |
|
</el-menu> |
|
</el-col> |
|
</el-row> |
|
|
|
</template> |
|
|
|
<style scoped> |
|
|
|
</style>
|
|
|