# sendEventToNative

发送事件到原生端

# 参数代码示例

// 发送事件到原生端(通知第三方授权状态变化)
this.$bridge.sendEventToNative({
    module: 'helpcenter',
    eventName: 'thirdPartAuthStateChanged',
    params: {
        idx: this.linkAppIndex,
        state: 1,
    },
})
1
2
3
4
5
6
7
8
9