| 123456789101112131415161718192021222324252627282930313233343536 |
- <template>
- <div id="app">
- <div class="view-container">
- <router-view />
- </div>
- </div>
- </template>
- <script>
- export default {
- name: 'app',
- data() {
- return {
-
- };
- },
- created(){
-
- },
- methods:{
-
- },
- mounted () {
-
- },
- }
- </script>
- <style>
- .view-container{
- display: flex;
- justify-content: center;
- align-items: center;
- }
- </style>
|