1234567891011121314151617181920212223242526272829303132333435 |
- <template>
- <div id="app">
- <router-view/>
- </div>
- </template>
- <script>
- export default {
- name: 'App'
- }
- </script>
- <style lang="scss">
- * {
- box-sizing:border-box;
- }
- html,body {
- padding:0;
- margin:0;
- height:100vh;
- max-width:100%;
- max-height:100%;
- }
- #app {
- position:relative;
- padding:0;
- display:flex;
- height:100%;
- flex-flow:column;
- font-family: 'Avenir', Helvetica, Arial, sans-serif;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- color: #2c3e50;
- }
- </style>
|