2021-12-06 23:20:34 +08:00

47 lines
836 B
Vue

<template>
<el-menu
:default-active="activeIndex"
class="el-menu-demo"
mode="horizontal"
@select="handleSelect"
>
<el-menu-item index="dealCenter">处理中心</el-menu-item>
<!-- <el-menu-item index="history">历史记录</el-menu-item> -->
</el-menu>
<router-view />
</template>
<script>
export default {
name: "Home",
data() {
return {
activeIndex: "dealCenter",
};
},
};
</script>
<style lang="less">
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
}
#nav {
padding: 30px;
a {
font-weight: bold;
color: #2c3e50;
&.router-link-exact-active {
color: #42b983;
}
}
}
</style>