App_20220531165047.vue 482 B

1234567891011121314151617181920212223242526272829
  1. <!--
  2. * @LastEditors: gcz
  3. -->
  4. <template>
  5. <div id="app">
  6. <router-view/>
  7. </div>
  8. </template>
  9. <script>
  10. export default {
  11. name: 'App'
  12. }
  13. </script>
  14. <style lang='scss'>
  15. @import url(../static/css/flex.scss);
  16. #app {
  17. position: relative;
  18. font-family: 'Avenir', Helvetica, Arial, sans-serif;
  19. -webkit-font-smoothing: antialiased;
  20. -moz-osx-font-smoothing: grayscale;
  21. text-align: center;
  22. color: #2c3e50;
  23. }
  24. @mixin mbg($o){
  25. background-color: rgba(38,80,179,$o);
  26. }
  27. </style>