您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

39 行
727B

  1. <template>
  2. <v-app>
  3. <dashboard-core-app-bar v-model="expandOnHover" />
  4. <v-progress-linear
  5. :active="loading"
  6. indeterminate
  7. absolute
  8. color="red"
  9. />
  10. <dashboard-core-drawer :expand-on-hover.sync="expandOnHover" />
  11. <dashboard-core-view />
  12. </v-app>
  13. </template>
  14. <script>
  15. export default {
  16. name: 'DashboardIndex',
  17. components: {
  18. DashboardCoreAppBar: () => import('./components/core/AppBar'),
  19. DashboardCoreDrawer: () => import('./components/core/Drawer'),
  20. DashboardCoreView: () => import('./components/core/View')
  21. },
  22. data: () => ({
  23. expandOnHover: false
  24. }),
  25. computed: {
  26. loading () {
  27. return false // this.$store.state.loading
  28. }
  29. }
  30. }
  31. </script>