📱 子页面 (iframe)

child.html
// 子页面代码示例
const channel = new IframeChannel(parentOrigin)
channel.subscribe('greeting', ({data}) => data)
channel.publish('notify', {msg: 'Hi!'})