搜尋

首頁  >  問答  >  主體

javascript - vue 怎麼渲染自訂元件

程式碼如下圖 :

#cbutton為自訂元件,1情況正常無問題, 2情況使用v-html只能渲染原生元件.
2要求動態輸出,這種情況需要使用render解決嗎?jsx呢?
並沒有使用過render函數,求大神幫忙

phpcn_u1582phpcn_u15822708 天前884

全部回覆(1)我來回復

  • 淡淡烟草味

    淡淡烟草味2017-06-28 09:30:58

    官方文件明確說過、v-html只能渲染純html

    第一種方法都寫出來了、你套個template直接遍歷節點不就好了麼

    <template v-for="e in arr">
        <cbutton :type="e.type" :msg="e.msg">
    </template>

    回覆
    0
  • 取消回覆