18 lines
198 B
Vue

<template>
<div id="app">
<router-view />
</div>
</template>
<script setup>
// App 根组件
</script>
<style>
#app {
width: 100%;
min-height: 100vh;
background: #f7f8fa;
}
</style>