16 lines
229 B
Vue
16 lines
229 B
Vue
|
|
<template>
|
||
|
|
<div id="app">
|
||
|
|
<router-view />
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script setup lang="ts">
|
||
|
|
// App根组件
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style lang="scss">
|
||
|
|
#app {
|
||
|
|
min-height: 100vh;
|
||
|
|
background-color: var(--van-background-color);
|
||
|
|
}
|
||
|
|
</style>
|