Files
system-file/web-vue/src/App.vue

17 lines
200 B
Vue

<template>
<router-view />
</template>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Microsoft YaHei', sans-serif;
background: #f5f7fa;
}
</style>