29 lines
431 B
Vue
29 lines
431 B
Vue
<template>
|
|
<widgets @on-mounted="onMounted"></widgets>
|
|
</template>
|
|
|
|
<script>
|
|
import { defineAsyncComponent } from "vue";
|
|
const widgets = defineAsyncComponent(() => import("./widgets/index_bx.vue"));
|
|
|
|
export default {
|
|
name: "dashboard",
|
|
components: {
|
|
widgets,
|
|
},
|
|
data() {
|
|
return {
|
|
pageLoading: true,
|
|
};
|
|
},
|
|
mounted() {},
|
|
methods: {
|
|
onMounted() {
|
|
this.pageLoading = false;
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style></style>
|