init
This commit is contained in:
2025-06-27 17:42:38 +08:00
commit bd6402478b
5317 changed files with 785994 additions and 0 deletions
@@ -0,0 +1,20 @@
/* eslint-disable @typescript-eslint/no-empty-function */
/**
* class IComponentServer
*
* IComponentServer 组件 server 基类
*/
export default class IComponentServer {
/**
* 组件销毁
*/
public destroyed() {}
/**
* 数据监听回调
*
* @param {any} oldValue 旧数据
* @param {any} newValue 新数据
*/
protected updateStore(oldValue:any, newValue:any) {}
}