1234567891011121314151617181920212223 |
- <template>
- <div id="app">
- <router-view />
- </div>
- </template>
- <script>
- export default {
- name: "App",
- created() {
- /**
- *
- * 获取首页配置
- */
- this.$store.dispatch("getCommonBaseHomeList");
- },
- };
- </script>
- <style>
- #app {
- }
- </style>
|