Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

image.png
render函数中写slot在当前组件中打印this.$slots没有name-of-slot对应的VNode


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.4k views
Welcome To Ask or Share your Answers For Others

1 Answer

这里对应的是模板中的slot绑定,比如:

<SuperHero>
  <h1 slot="heroName">Iron Man</h1>
</SuperHero>

对应render函数:

{
  render(h) {
    return h('h1', { slot: 'heroName' }, 'Iron Man')
  }
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...