1234567891011121314151617181920212223242526272829303132333435 |
- <template>
- <div id="app">
- <router-view />
- </div>
- </template>
- <script>
- export default {
- name: 'App',
- created() {
- },
- mounted() {
- },
- methods:{
- }
-
- }
- </script>
- <style>
- *{
- margin: 0;
- padding: 0;
- }
- body{
- font-family: "Helvetica Neue",Helvetica,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","微软雅黑",Arial,sans-serif;
- }
- #app {
- height: 100%;
- width: 100%;
- }
- </style>
|