mirror of
https://gitee.com/java110/PropertyApp.git
synced 2026-02-23 21:36:39 +08:00
33 lines
440 B
Vue
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>
|