Files
2026-08-20 18:29:49 +08:00

11 lines
266 B
JavaScript

/**
* 组件间关系
* 注意:须与p-f-unicom配合使用!!!
* @param {*} name
* @returns
*/
export function getRelationNodes(name) {
if(!this.$unicom) throw "this.getRelationNodes()需与p-f-unicom配合使用!"
return this.$unicom('@' + name)
}