<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>