1234567891011121314151617181920212223242526 |
- <template>
- <div id="app">
- <router-view />
- </div>
- </template>
-
- <script>
- import { mapState } from 'vuex'
-
- export default {
- name: 'App',
- computed: {
- ...mapState(['LOADING'])
- },
- }
- </script>
-
- <style>
- html,
- body,
- #app {
- margin: 0;
- height: 100%;
- background-color: rgb(247, 247, 247);
- }
- </style>
|