business.vue 828 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <template>
  2. <div class="iot-work">
  3. <ContainerAside></ContainerAside>
  4. <div class="pageContainer-body">
  5. <Breadcrumb></Breadcrumb>
  6. <a-spin class="pageContainer-content" size="large" tip="加载中..." :spinning="$store.loadingStore().loading">
  7. <router-view />
  8. </a-spin>
  9. </div>
  10. </div>
  11. </template>
  12. <script>
  13. import { defineAsyncComponent } from "vue";
  14. export default {
  15. data() {
  16. return {
  17. };
  18. },
  19. components: {
  20. ContainerAside: defineAsyncComponent(() =>
  21. import("@/components/home/ContainerAside.vue")
  22. ),
  23. Breadcrumb: defineAsyncComponent(() =>
  24. import("@/components/breadcrumb/iotBreadcrumb.vue")
  25. ),
  26. },
  27. watch: {
  28. },
  29. mounted() {
  30. },
  31. methods: {
  32. },
  33. };
  34. </script>
  35. <style lang="less" scoped>
  36. .iot-work {
  37. width: 100%;
  38. height: 100%;
  39. }
  40. </style>