You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
423 B
28 lines
423 B
<template>
|
|
<div id="app">
|
|
<router-view></router-view>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "app"
|
|
};
|
|
</script>
|
|
|
|
<style>
|
|
body {
|
|
padding: 0px;
|
|
margin: 0px auto;
|
|
}
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
#app {
|
|
font-family: PingFangSC-Light, helvetica, "Heiti SC";
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
text-align: left;
|
|
color: #2c3e50;
|
|
}
|
|
</style>
|