x-php-Admin/src/views/home/index.vue

49 lines
920 B
Vue
Raw Normal View History

2023-06-07 10:48:30 +00:00
<template>
<div v-if="pageLoading">
<el-main>
<el-card shadow="never">
<el-skeleton :rows="1"></el-skeleton>
</el-card>
<el-card shadow="never" style="margin-top: 15px;">
<el-skeleton></el-skeleton>
</el-card>
</el-main>
</div>
<work v-if="dashboard=='1'" @on-mounted="onMounted"></work>
<widgets v-else @on-mounted="onMounted"></widgets>
</template>
<script>
import { defineAsyncComponent } from 'vue';
const work = defineAsyncComponent(() => import('./work'));
const widgets = defineAsyncComponent(() => import('./widgets'));
export default {
name: "dashboard",
components: {
work,
widgets
},
data(){
return {
pageLoading: true,
dashboard: '0'
}
},
created(){
2023-06-13 07:49:26 +00:00
this.dashboard = this.$tool.data.get("userinfo").dashboard || '0';
2023-06-07 10:48:30 +00:00
},
mounted(){
},
methods: {
onMounted(){
this.pageLoading = false
}
}
}
</script>
<style>
</style>