Files
xian_vue_new/src/App.vue
T

16 lines
220 B
Vue
Raw Normal View History

2026-04-07 20:01:06 +08:00
<template>
<RouterView></RouterView>
</template>
<script setup lang="ts" name="App">
import { RouterView } from 'vue-router'
</script>
<style>
* {
margin: 0;
padding: 0;
font-family: '微软雅黑';
}
</style>