123
This commit is contained in:
parent
4f0832ce6c
commit
09e1309893
@ -13,35 +13,32 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { defineAsyncComponent } from 'vue';
|
||||
const widgets = defineAsyncComponent(() => import('./widgets'));
|
||||
import { defineAsyncComponent } from 'vue';
|
||||
const widgets = defineAsyncComponent(() => import('./widgets'));
|
||||
|
||||
export default {
|
||||
export default {
|
||||
name: "home",
|
||||
components: {
|
||||
widgets
|
||||
},
|
||||
data(){
|
||||
data() {
|
||||
return {
|
||||
pageLoading: true,
|
||||
}
|
||||
},
|
||||
created(){
|
||||
created() {
|
||||
|
||||
},
|
||||
mounted(){
|
||||
|
||||
mounted() {
|
||||
// console.log(this.$socket)
|
||||
|
||||
},
|
||||
methods: {
|
||||
onMounted(){
|
||||
onMounted() {
|
||||
this.pageLoading = false
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
|
||||
</style>
|
||||
<style></style>
|
||||
|
Loading…
Reference in New Issue
Block a user