19 lines
358 B
Vue
19 lines
358 B
Vue
|
|
<template>
|
||
|
|
<div id="app">
|
||
|
|
<router-view />
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
export default { name: 'App' }
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style lang="scss">
|
||
|
|
@import '@/assets/styles/global';
|
||
|
|
|
||
|
|
#app { height: 100vh; overflow: hidden; display: flex; flex-direction: column; }
|
||
|
|
|
||
|
|
// NProgress 颜色适配
|
||
|
|
#nprogress .bar { background: var(--sms-highlight) !important; }
|
||
|
|
</style>
|