App.vue 379 B

123456789101112131415161718192021222324
  1. <template>
  2. <div id="app" v-cloak>
  3. <router-view />
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: `App`,
  9. }
  10. </script>
  11. <style lang="less">
  12. #app {
  13. -moz-osx-font-smoothing: grayscale;
  14. -moz-user-select: none;
  15. -ms-user-select: none;
  16. -webkit-font-smoothing: antialiased;
  17. -webkit-user-select: none;
  18. height: 100%;
  19. user-select: none;
  20. width: 100%;
  21. }
  22. </style>