16 lines
220 B
Vue
16 lines
220 B
Vue
|
|
<template>
|
||
|
|
<RouterView></RouterView>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script setup lang="ts" name="App">
|
||
|
|
import { RouterView } from 'vue-router'
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style>
|
||
|
|
* {
|
||
|
|
margin: 0;
|
||
|
|
padding: 0;
|
||
|
|
font-family: '微软雅黑';
|
||
|
|
}
|
||
|
|
</style>
|