relation.js 266 B

12345678910
  1. /**
  2. * 组件间关系
  3. * 注意:须与p-f-unicom配合使用!!!
  4. * @param {*} name
  5. * @returns
  6. */
  7. export function getRelationNodes(name) {
  8. if(!this.$unicom) throw "this.getRelationNodes()需与p-f-unicom配合使用!"
  9. return this.$unicom('@' + name)
  10. }