app-default-mpickupview.tsx 420 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
import { Component } from 'vue-property-decorator';
import { VueLifeCycleProcessing } from '../../../decorators';
import { AppMPickUpViewBase } from '../app-common-view/app-mpickupview-base';

/**
 * 应用数据多项选择视图
 *
 * @export
 * @class AppDefaultMPickUpView
 * @extends {AppMPickUpViewBase}
 */
@Component({})
@VueLifeCycleProcessing()
export class AppDefaultMPickUpView extends AppMPickUpViewBase {}