App.vue 930 B

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