33 lines
694 B
Vue
33 lines
694 B
Vue
<template>
|
||
<div id="app">
|
||
<!-- 直接渲染路由,由路由配置决定使用什么布局 -->
|
||
<router-view />
|
||
</div>
|
||
</template>
|
||
|
||
<script setup lang="ts">
|
||
// App.vue 只负责渲染路由出口
|
||
// 具体的布局(NavigationLayout, BlankLayout等)由路由配置决定
|
||
</script>
|
||
|
||
<style lang="scss">
|
||
#app {
|
||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB',
|
||
'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
||
-webkit-font-smoothing: antialiased;
|
||
-moz-osx-font-smoothing: grayscale;
|
||
height: 100vh;
|
||
margin: 0;
|
||
padding: 0;
|
||
}
|
||
|
||
* {
|
||
box-sizing: border-box;
|
||
}
|
||
|
||
body {
|
||
margin: 0;
|
||
padding: 0;
|
||
}
|
||
</style>
|