以下代码将生成一个空的注释节点,即<!---->
.
如何生成非空评论节点,例如<!-- Foo -->
使用h
?
export default {
render(h) {
return h(null)
},
}
以下代码将生成一个空的注释节点,即<!---->
.
如何生成非空评论节点,例如<!-- Foo -->
使用h
?
export default {
render(h) {
return h(null)
},
}
h(null)
使用字符串作为第二个参数export default {
render(h) {
return h(null, 'This is a comment') // <!--This is a comment-->
},
}
h(Comment)
使用字符串作为第二个参数import { h, Comment } from 'vue' // Vue 3
export default {
render() {
return h(Comment, 'This is a comment') // <!--This is a comment-->
},
}
createCommentVNode()
使用字符串作为参数import { createCommentVNode } from 'vue' // Vue 3
export default {
render() {
return createCommentVNode('This is a comment') // <!--This is a comment-->
},
}