mh-two-thousand-and-two
2024-04-12 3d2ec2fd0578d3ba0a414b0cc4e4a2ae60878596
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import {
  isPage,
  initRelation,
  handleLink
} from './util'
 
import {
  initSlots,
  initVueIds
} from 'uni-wrapper/util'
 
import parseBaseComponent from '../../../mp-weixin/runtime/wrapper/component-base-parser'
 
export default function parseComponent (vueComponentOptions, needVueOptions) {
  const [componentOptions, vueOptions, VueComponent] = parseBaseComponent(vueComponentOptions, {
    isPage,
    initRelation
  }, true)
 
  componentOptions.lifetimes.attached = function attached () {
    const properties = this.properties
 
    const options = {
      mpType: isPage.call(this) ? 'page' : 'component',
      mpInstance: this,
      propsData: properties
    }
 
    initVueIds(properties.vueId, this)
 
    // 初始化 vue 实例
    this.$vm = new VueComponent(options)
 
    // 处理$slots,$scopedSlots(暂不支持动态变化$slots)
    initSlots(this.$vm, properties.vueSlots)
 
    // 处理父子关系
    initRelation.call(this, {
      vuePid: this._$vuePid,
      mpInstance: this
    })
 
    // 触发首次 setData
    this.$vm.$mount()
  }
 
  // ready 比 handleLink 还早,初始化逻辑放到 handleLink 中
  delete componentOptions.lifetimes.ready
 
  componentOptions.methods.__l = handleLink
 
  return needVueOptions ? [componentOptions, vueOptions] : componentOptions
}