代码如下图 :
cbutton为自定义组件,1情况正常无问题 , 2情况使用v-html只能渲染原生组件.2要求动态输出,这种情况需要使用render解决吗?jsx呢?并没有使用过render函数,求大神帮忙
官方文档明确说过、v-html只能渲染纯html
第一种方法都写出来了、你套个template直接遍历节点不就好了么
<template v-for="e in arr"> <cbutton :type="e.type" :msg="e.msg"> </template>
官方文档明确说过、v-html只能渲染纯html
第一种方法都写出来了、你套个template直接遍历节点不就好了么