| 1234567891011121314151617181920212223242526272829303132 |
- <template>
- <div id="app">
- <router-view />
- </div>
- </template>
- <script>
- export default {
- data() {
- return {};
- },
- };
- </script>
- <style lang="less">
- div {
- -moz-user-select: none; /*火狐*/
- -webkit-user-select: none; /*webkit浏览器*/
- -ms-user-select: none; /*IE10*/
- -khtml-user-select: none; /*早期浏览器*/
- user-select: none;
- }
- body,
- html {
- margin: 0;
- padding: 0;
- width: 100%;
- height: 100%;
- }
- #app {
- width: 100%;
- height: 100%;
- }
- </style>
|