xinsi_book/src/App.vue

45 lines
399 B
Vue
Raw Normal View History

2024-06-11 08:14:31 +00:00
<template>
<div id="app">
2024-09-12 01:17:30 +00:00
<router-view/>
2024-06-11 08:14:31 +00:00
</div>
</template>
2024-07-05 07:58:15 +00:00
<script>
export default{
2024-09-12 01:17:30 +00:00
components:{
},
2024-07-05 07:58:15 +00:00
data(){
return{
}
},
mounted(){
}
}
</script>
2024-06-11 08:14:31 +00:00
<style>
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
2024-06-24 00:21:57 +00:00
/* text-align: center; */
2024-06-11 08:14:31 +00:00
color: #2c3e50;
}
</style>