PropertyApp/pages/index/work.vue
2023-09-01 18:56:24 +08:00

33 lines
440 B
Vue

<template>
<view>
<work-function ref="workFunctionRef"></work-function>
</view>
</template>
<script>
import workFunction from '@/components/vc-index/work-function.vue'
export default {
data() {
return {
}
},
components:{
workFunction
},
onLoad() {
let _that = this;
setTimeout(function(){
_that.$refs.workFunctionRef._loadMenu();
},1000)
},
methods: {
}
}
</script>
<style>
</style>