app-index-view-appmenu.vue 430 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
<script lang='ts'>
import { Component } from 'vue-property-decorator';
import { VueLifeCycleProcessing } from '@/crm-core';
import AppIndexViewBase from './app-index-view-appmenu-base.vue';

/**
 * appmenu基类
 *
 * @export
 * @class AppIndexView
 * @extends {AppIndexViewBase}
 */
@Component({
    components: {
         
    }
})
@VueLifeCycleProcessing
export default class AppIndexView extends AppIndexViewBase { }
</script>