Javascript 进行v-select html转换

Javascript 进行v-select html转换,javascript,vue.js,vuetify.js,Javascript,Vue.js,Vuetify.js,我使用axios向v-select发送数据,但内容是html格式的 我想使用v-html转换文本,但不成功 <v-select :items="quizs" item-text="questiontext" item-value="id" v-model="quizid" ></v-select> 您可以使用v-select内的模板进行自定义显示。然后使用v-html解码html标记,如下所示: <v-select :items='quizs' v-m

我使用axios向v-select发送数据,但内容是html格式的

我想使用v-html转换文本,但不成功

<v-select
 :items="quizs"
 item-text="questiontext"
 item-value="id"
 v-model="quizid"
></v-select>


您可以使用v-select内的模板进行自定义显示。然后使用v-html解码html标记,如下所示:

<v-select :items='quizs' v-model="quizid">
    <template v-slot:item='{item}'>
         <div v-html='item.questiontext'/>
    </template>
    <template v-slot:selection='{item}'>
         <div v-html='item.questiontext'/>
    </template>
</v-select>

请参阅链接。