fix(editor): 获取关联组件的方法默认值

This commit is contained in:
roymondchen 2025-03-13 14:30:28 +08:00
parent 9c7d711c16
commit f5742c107a

View File

@ -57,7 +57,7 @@ class Events extends BaseService {
}
public getMethod(type: string) {
return cloneDeep(methodMap[toLine(type)]);
return cloneDeep(methodMap[toLine(type)]) || [];
}
public resetState() {