{
  "title": "web-view",
  "type": "object",
  "properties": {
    "src": {
      "type": "string",
      "description": "webview 指向网页的链接。可打开关联的公众号的文章，其它网页需登录小程序管理后台配置业务域名。"
    },
    "bindMessage": {
      "tsType": "() => void",
      "description": "网页向小程序 postMessage 时，会在以下特定时机触发并收到消息：小程序后退、组件销毁、分享、复制链接（2.31.1）。e.detail = { data }，data是多次 postMessage 的参数组成的数组。"
    },
    "bindLoad": {
      "tsType": "() => void",
      "description": "网页加载成功时候触发此事件。e.detail = { src }"
    },
    "bindError": {
      "tsType": "() => void",
      "description": "网页加载失败的时候触发此事件。e.detail = { url, fullUrl }，其中 fullUrl 为加载失败时的完整 url"
    }
  },
  "additionalProperties": false
}