12345678910111213141516171819202122232425 |
- <template>
- <div id="app">
- <router-view />
- </div>
- </template>
- <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>
|