mirror of
https://github.com/Gongxh0901/kunpolibrary
synced 2025-09-14 10:28:41 +00:00
21 lines
444 B
TypeScript
21 lines
444 B
TypeScript
/**
|
|
* @Author: Gongxh
|
|
* @Date: 2025-09-04
|
|
* @Description:
|
|
*/
|
|
|
|
import { fgui, kunpo } from "../../../header";
|
|
|
|
const { uiheader, uiprop, uicom, uiclick } = kunpo._uidecorator;
|
|
const { bindMethod, bindProp } = kunpo.data;
|
|
|
|
@uicom("Basics", "Item1")
|
|
export class Item1 extends fgui.GComponent {
|
|
@uiprop
|
|
private lab_desc: fgui.GTextField;
|
|
|
|
public onInit(): void {
|
|
console.log("Basics Item1 onInit", this.lab_desc);
|
|
}
|
|
}
|