mirror of
https://gitee.com/dgflash/oops-plugin-framework.git
synced 2026-09-07 04:07:19 +08:00
8 lines
225 B
TypeScript
8 lines
225 B
TypeScript
import type { CCEntity } from './CCEntity';
|
|
import { CCView } from './CCView';
|
|
|
|
/** 兼容老版本 */
|
|
export abstract class CCViewVM<T extends CCEntity> extends CCView<T> {
|
|
protected mvvm = true; // 启用 MVVM 功能
|
|
}
|