<script lang='ts'>
import { Component } from 'vue-property-decorator';
import { VueLifeCycleProcessing } from '@/crm-core';
import IndexViewBase from './index-view-appmenu-base.vue';
/**
* appmenu基类
*
* @export
* @class IndexView
* @extends {IndexViewBase}
*/
@Component({
components: {
}
})
@VueLifeCycleProcessing
export default class IndexView extends IndexViewBase { }
</script>
-
由 ibizdev 提交于90560db1