程式碼如下圖 :
#cbutton為自訂元件,1情況正常無問題, 2情況使用v-html只能渲染原生元件.
2要求動態輸出,這種情況需要使用render解決嗎?jsx呢?
並沒有使用過render函數,求大神幫忙
淡淡烟草味2017-06-28 09:30:58
官方文件明確說過、v-html只能渲染純html
第一種方法都寫出來了、你套個template直接遍歷節點不就好了麼
<template v-for="e in arr">
<cbutton :type="e.type" :msg="e.msg">
</template>