## uni.$on(eventName, callback) @$on ## uni.$off(eventName, callback) @$off ## uni.$once(eventName, callback) @$once ## uni.$emit(eventName, args?) @$emit :::warning 参数 `args` 为对象字面量时,需要通过 `as UTSJSONObject` 明确类型,例如: ```js uni.$emit('fn', {"a": 1} as UTSJSONObject) ``` :::