mirror of
https://gitee.com/dgflash/oops-plugin-framework.git
synced 2026-05-07 01:01:09 +08:00
23 lines
779 B
JavaScript
23 lines
779 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.TemplateViewMvvm = void 0;
|
|
exports.TemplateViewMvvm = `import { _decorator } from "cc";
|
|
import { gui } from "db://oops-framework/core/gui/Gui";
|
|
import { LayerType } from "db://oops-framework/core/gui/layer/LayerEnum";
|
|
import { ecs } from "db://oops-framework/libs/ecs/ECS";
|
|
import { CCViewVM } from "db://oops-framework/module/common/CCViewVM";
|
|
|
|
const { ccclass, property } = _decorator;
|
|
|
|
/** 视图层对象 - 支持 MVVM 框架的数据绑定 */
|
|
@ccclass('<%Name%>Comp')
|
|
@ecs.register('<%Name%>', false)
|
|
@gui.register('<%Name%>', { layer: LayerType.UI, prefab: "界面预制路径" })
|
|
export class <%Name%>Comp extends CCViewVM<<%ModuleName%>> {
|
|
data: any = {};
|
|
|
|
reset() {
|
|
|
|
}
|
|
}`;
|