| 1234567891011121314151617181920212223 |
- <template>
- <div id="app">
- <router-view />
- </div>
- </template>
- <style>
- body {
- width: 100vw;
- height: 100vh;
- display: flex;
- justify-content: center;
- align-items: center;
- background: #ccc;
- overflow: hidden;
- margin: 0;
- padding: 0;
- }
- div {
- width: 100%;
- height: 100%;
- }
- </style>
|