App.vue 270 B

1234567891011121314151617181920212223
  1. <template>
  2. <div id="app">
  3. <router-view />
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: "App",
  9. created() {
  10. /**
  11. *
  12. * 获取首页配置
  13. */
  14. this.$store.dispatch("getCommonBaseHomeList");
  15. },
  16. };
  17. </script>
  18. <style>
  19. #app {
  20. }
  21. </style>