central-appmenu.vue 380 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
<script lang='tsx'>
import { Component } from 'vue-property-decorator';
import { VueLifeCycleProcessing } from '@/studio-core/decorators/VueLifeCycleProcessing';
import CentralBase from './central-appmenu-base.vue';


/**
 * 应用菜单
 */
@Component({
    components: {
         
    }
})
@VueLifeCycleProcessing()
export default class Central extends CentralBase { }
</script>