19 lines
200 B
Vue
19 lines
200 B
Vue
<script setup lang="ts">
|
|
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<router-view />
|
|
</template>
|
|
|
|
<style>
|
|
/* 全局样式 */
|
|
html, body, #app {
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 100%;
|
|
min-height: 100vh;
|
|
}
|
|
</style>
|