|
12345678910111213141516171819202122232425 |
- <template>
- <router-view />
- </template>
-
- <script>
-
-
- export default {
- name: 'App',
- }
- </script>
-
- <style type="text/css">
- html,body{
-
- width: 100%;
- height: 100%;
- position: absolute;
- left: 0;top: 0;
- overflow-x: hidden;
- overflow-y: auto;
-
- }
-
- </style>
|