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.
32 lines
557 B
32 lines
557 B
1 year ago
|
<script setup>
|
||
|
import {
|
||
|
Document,
|
||
|
Menu as IconMenu,
|
||
|
Location,
|
||
|
Setting,
|
||
|
} from '@element-plus/icons-vue'
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<el-row class="tac">
|
||
|
<el-col :span="15">
|
||
|
<h5 class="mb-2">鼎新工具集</h5>
|
||
|
<el-menu
|
||
|
default-active="1"
|
||
|
class="el-menu-vertical-demo"
|
||
|
>
|
||
|
<el-menu-item index="1">
|
||
|
<el-icon>
|
||
|
<icon-menu/>
|
||
|
</el-icon>
|
||
|
<span>影院列表</span>
|
||
|
</el-menu-item>
|
||
|
</el-menu>
|
||
|
</el-col>
|
||
|
</el-row>
|
||
|
|
||
|
</template>
|
||
|
|
||
|
<style scoped>
|
||
|
|
||
|
</style>
|