render函数中写slot在当前组件中打印this.$slots没有name-of-slot对应的VNode
这里对应的是模板中的slot绑定,比如:
<SuperHero> <h1 slot="heroName">Iron Man</h1> </SuperHero>
对应render函数:
{ render(h) { return h('h1', { slot: 'heroName' }, 'Iron Man') } }
2.1m questions
2.1m answers
60 comments
57.0k users