| 123456789101112131415161718192021222324252627 |
- <template>
- <div id="app">
- <router-view />
- </div>
- </template>
- <script>
- </script>
- <style lang="less">
- #app {
- width: 100%;
- height: 100%;
- }
- html {
- margin: 0;
- width: 100%;
- height: 100%;
- }
- body {
- margin: 0;
- width: 100%;
- height: 100%
- }
- canvas:focus{
- outline: none;
- }
- </style>
|