我試圖使用以下代碼傳遞exp的值。但是,selectedChannel.explanation的形式是「< b>頻道名稱</b>」。我如何才能將exp顯示爲頻道名稱?如何傳遞Vue中的字符串並將其視爲html
computed: {
channel: {
get() {
const selectedChannel = this.$store.getters.selectedChannel;
return selectedChannel ? selectedChannel.explanation : '';
}
下面是部分模板
<div class="channels">
<textarea
v-model="channel">
</textarea>
</div>
你可以創建一個小提琴,你是否得到y錯誤? – Saurabh