| 123456789101112131415161718192021222324 |
- <template>
- <div id="app">
- <router-view/>
- </div>
- </template>
- <script>
- export default {
- name: 'App',
- }
- </script>
- <style>
- #app {
- background: #E4E4E4;
- width: 100%;
- }
- body{
- margin: 0;
- padding: 0;
- width: 100%;
- height: 100%;
- }
- </style>
|