72 lines
1.0 KiB
Vue
72 lines
1.0 KiB
Vue
<template>
|
|
<router-view></router-view>
|
|
</template>
|
|
<script>
|
|
import router from "@/router";
|
|
|
|
export default {
|
|
name: 'App',
|
|
components: {},
|
|
mounted() {
|
|
},
|
|
}
|
|
</script>
|
|
<style lang="scss">
|
|
#app {
|
|
height: 100%;
|
|
max-height: 100%;
|
|
width: 100%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
html {
|
|
height: 100%;
|
|
max-height: 100%;
|
|
width: 100%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
body {
|
|
height: 100%;
|
|
max-height: 100%;
|
|
width: 100%;
|
|
max-width: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
p.p-title {
|
|
font-family: 'Segoe UI', sans-serif;
|
|
font-size: 20px;
|
|
font-weight: bold;
|
|
color: #606266
|
|
}
|
|
|
|
.el-menu {
|
|
background-color: transparent;
|
|
|
|
.el-menu-item {
|
|
height: 40px;
|
|
margin: 8px 16px 0 16px;
|
|
border-radius: 10px;
|
|
line-height: 40px;
|
|
|
|
i {
|
|
}
|
|
}
|
|
|
|
.el-menu-item:hover,
|
|
.el-menu-item:focus {
|
|
background-color: transparent;
|
|
color: var(--el-color-primary);
|
|
}
|
|
|
|
.el-menu-item.is-active {
|
|
background-color: rgba(var(--el-color-primary-rgb), .1);
|
|
color: var(--el-color-primary);
|
|
font-weight: bold;
|
|
}
|
|
|
|
}
|
|
</style>
|