| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <template>
- <div id="app">
- <router-view/>
- </div>
- </template>
- <script>
- export default {
- mounted() {
- }
- }
- </script>
- <style>
- #app {
- position: absolute;
- width: 100%;
- height: 100%;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- overflow: hidden;
- display: block;
- margin: 0 auto;
- font-family: Avenir, Helvetica, Arial, sans-serif;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- text-align: center;
- color: #2c3e50;
- }
- ul, li {
- list-style: none;
- margin: 0;
- padding: 0;
- }
- @font-face {
- font-family: vista;
- src: url('assets/font/vista.otf');
- }
- * {
- font-family: vista;
- }
- </style>
|