123456789101112131415161718192021222324252627 |
- <template>
- <div id="app">
- <router-view />
- </div>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- },
- }
- </script>
- <style lang="less">
- body,
- html {
- margin: 0;
- padding: 0;
- width: 100%;
- height: 100%;
- }
- #app {
- width: 100%;
- height: 100%;
- }
- </style>
|