mirror of
https://github.com/Gongxh0901/kunpolibrary
synced 2025-08-06 07:18:41 +00:00
18 lines
389 B
TypeScript
18 lines
389 B
TypeScript
|
/**
|
||
|
* @Author: Gongxh
|
||
|
* @Date: 2024-12-26
|
||
|
* @Description:
|
||
|
*/
|
||
|
|
||
|
import { fgui, kunpo } from "../../../header";
|
||
|
const { uiheader, uiprop, uicom, uiclick } = kunpo._uidecorator;
|
||
|
|
||
|
@uicom("Window", "CustomComponents")
|
||
|
export class CustomComponents extends fgui.GComponent {
|
||
|
@uiprop n1: fgui.GTextField;
|
||
|
|
||
|
public onInit(): void {
|
||
|
kunpo.log("CustomComponents onInit");
|
||
|
}
|
||
|
}
|