vue的render函数jsx写法,怎么支持类似react的段语法<></>
类似这种react短语法,渲染不占dom节点,vue是不支持的
<script>export default {
render() {
let show = true
return (
<>{show ? <div>display</div> : null}</>
)
}
}
</script>
compile会报错You may need an additional loader to handle the result of these loaders.这个可以怎么去解决呢
回答:
可以看看vue-fragment
回答:
vue3里是要这么写
vue2不原生支持
vue2里想用就得通过引入第三方插件支持,就比如楼上的那个vue-fragment
回答:
函数式组件可以返回一个vnode数组
以上是 vue的render函数jsx写法,怎么支持类似react的段语法<></> 的全部内容, 来源链接: utcz.com/p/936199.html