App.vue 833 B

123456789101112131415161718192021222324252627282930313233343536
  1. <template>
  2. <div id="app">
  3. <router-view />
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'App'
  9. }
  10. </script>
  11. <style lang="scss">
  12. html,body,div,h1,h2,h3,h4,h5,p{
  13. margin: 0;
  14. padding: 0;
  15. box-sizing: border-box;
  16. user-select: none;
  17. -moz-user-select:none; /* Firefox私有属性 */
  18. -webkit-user-select:none; /* WebKit内核私有属性 */
  19. -ms-user-select:none; /* IE私有属性(IE10及以后) */
  20. }
  21. #app {
  22. font-family: Avenir, Helvetica, Arial, sans-serif;
  23. -webkit-font-smoothing: antialiased;
  24. -moz-osx-font-smoothing: grayscale;
  25. font-size: 25px;
  26. user-select: none;
  27. -moz-user-select:none; /* Firefox私有属性 */
  28. -webkit-user-select:none; /* WebKit内核私有属性 */
  29. -ms-user-select:none; /* IE私有属性(IE10及以后) */
  30. }
  31. .fieldset{
  32. border: none;
  33. padding: 0;
  34. margin: 0;
  35. }
  36. </style>