| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <template>
- <div id="app">
- <watercom ref="watercom"></watercom>
- <router-view />
- </div>
- </template>
- <script>
- // import watercom from '@/components/waterCom.vue'
- export default {
-
- name: 'App'
- }
- </script>
- <style lang="scss">
- html,body,div,h1,h2,h3,h4,h5,p{
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- user-select: none;
- -moz-user-select:none; /* Firefox私有属性 */
- -webkit-user-select:none; /* WebKit内核私有属性 */
- -ms-user-select:none; /* IE私有属性(IE10及以后) */
- }
- #app {
- font-family: Avenir, Helvetica, Arial, sans-serif;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- font-size: 25px;
- user-select: none;
- -moz-user-select:none; /* Firefox私有属性 */
- -webkit-user-select:none; /* WebKit内核私有属性 */
- -ms-user-select:none; /* IE私有属性(IE10及以后) */
- }
- .fieldset{
- border: none;
- padding: 0;
- margin: 0;
- }
- </style>
|