如何在标签中使用 HTML
How to use HTML in label
我有一个显示列表的单选列表控件。我想在新行中使用粗体和附加文本来格式化文本。我如何在标签中做到这一点。当我添加跨度时,它显示在 UI.
上
<v-flex>
<v-radio-group v-model="radioGroup">
<v-radio
v-for="(accountType, index) in accountTypes"
:key= "accountType.key"
:label="accountType.name"
:value= "accountType.key"
></v-radio>
</v-radio-group>
</v-flex>
<v-flex>
<v-radio-group v-model="accountType">
<v-radio
v-for="(acctType, index) in accountTypes"
:key= "acctType.key"
:value= "acctType.key"
>
<span slot="label">{{ }}</span>
</v-radio>
</v-radio-group>
</v-flex>
使用 Span 插槽解决了问题
我有一个显示列表的单选列表控件。我想在新行中使用粗体和附加文本来格式化文本。我如何在标签中做到这一点。当我添加跨度时,它显示在 UI.
上<v-flex>
<v-radio-group v-model="radioGroup">
<v-radio
v-for="(accountType, index) in accountTypes"
:key= "accountType.key"
:label="accountType.name"
:value= "accountType.key"
></v-radio>
</v-radio-group>
</v-flex>
<v-flex>
<v-radio-group v-model="accountType">
<v-radio
v-for="(acctType, index) in accountTypes"
:key= "acctType.key"
:value= "acctType.key"
>
<span slot="label">{{ }}</span>
</v-radio>
</v-radio-group>
</v-flex>
使用 Span 插槽解决了问题