App.vue 427 B

1234567891011121314151617181920212223
  1. <template>
  2. <div id="app">
  3. <transition name="el-fade-in-linear">
  4. <router-view/>
  5. </transition>
  6. </div>
  7. </template>
  8. <style lang="scss">
  9. * {
  10. font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  11. }
  12. html, body, #app {
  13. margin: 0px 0px 0px 0px;
  14. height: 100%;
  15. position: relative;
  16. overflow: hidden;
  17. }
  18. </style>