Files
zyplayer-doc/zyplayer-doc-ui/wiki-ui/src/App.vue

44 lines
634 B
Vue
Raw Normal View History

<template>
<div id="app">
<router-view></router-view>
</div>
</template>
<script>
export default {
name: 'app',
components: {},
data() {
return {};
},
mounted() {
// console.log("VUE_APP_TEST_ENV" + process.env.VUE_APP_TEST_ENV);
},
methods: {}
}
</script>
<style>
html, body {
margin: 0;
padding: 0;
height: 100%;
}
#app, .el-container, .el-menu {
height: 100%;
}
::-webkit-scrollbar {
width: 6px;
height: 9px;
-webkit-appearance: none;
}
::-webkit-scrollbar-thumb {
background: #ddd;
border-radius: 10px;
}
::-webkit-scrollbar-track-piece {
background: #eee;
}
</style>