123456789101112131415161718192021222324252627282930313233343536373839 |
- <template>
- <div class="main">
- <router-view />
- </div>
- </template>
- <script>
- export default {
- name: 'App'
- };
- </script>`
- <style>
- html,
- body {
- margin: 0;
- padding: 0;
- height: 100%;
- width: 100%;
- overflow: hidden;
- box-sizing: border-box;
- background-image: url(@/assets/bc.png);
- background-size: cover;
- background-position: bottom;
- }
- body {
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .main {
- width: 96%;
- height: 96vh;
- position: relative;
- background: rgba(255, 255, 255, 0.5);
- }
- </style>
|