Vue3 & JSX,如何获取通过写入和获取 slot 获得的参数



vue3&jsx,如何获取通过写入和获取slot获得的参数密码

// parent.jsx
//...
render() {
return (
<div>
this.$slots.cell({
msg: 'parent'
})
<div>
)
}
//...
// children.jsx
//...
setup(props){
return <div>{ props.msg }</div>
}
//...
//use.jsx
//...
render() {
return (
<parent>
// How to use the slot and get the passed parameters?
<parent>
)
}
//...

看起来像这样如何在vue jsx中使用模板作用域?。

这一切都在自述中https://github.com/vuejs/jsx-next/#slot

使用v-slots

相关内容

  • 没有找到相关文章

最新更新