factory_web/src/views/home/gx_home.vue

29 lines
431 B
Vue

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