17 lines
209 B
Vue
17 lines
209 B
Vue
<!-- src/App.vue -->
|
|
<template>
|
|
<router-view />
|
|
</template>
|
|
|
|
<style>
|
|
/* 全局重置 */
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
html, body, #app {
|
|
margin: 0;
|
|
padding: 0;
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
</style> |