component-parser.js 469 字节
Newer Older
fxy060608's avatar
fxy060608 已提交
1 2
import parseBaseComponent from '../../../mp-weixin/runtime/wrapper/component-parser'

3 4
export default function parseComponent (vueComponentOptions, needVueOptions) {
  const [componentOptions, vueOptions] = parseBaseComponent(vueComponentOptions, true)
fxy060608's avatar
fxy060608 已提交
5 6 7 8

  componentOptions.methods.$getAppWebview = function () {
    return plus.webview.getWebviewById(`${this.__wxWebviewId__}`)
  }
9 10
  return needVueOptions ? [componentOptions, vueOptions] : componentOptions
}