1234567891011121314151617181920212223242526272829 |
- <!--
- * @LastEditors: gcz
- -->
- <template>
- <div id="app">
- <router-view/>
- </div>
- </template>
- <script>
- export default {
- name: 'App'
- }
- </script>
- <style lang='scss'>
- @import url(../static/css/flex.scss);
- #app {
- position: relative;
- font-family: 'Avenir', Helvetica, Arial, sans-serif;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- text-align: center;
- color: #2c3e50;
- }
- @mixin mbg($o){
- background-color: rgba(38,80,179,$o);
- }
- </style>
|