我检查了文档中的v-radio组件,但是没有找到在其中设置labelHTML的方法。有人知道是否有办法吗?
<v-radio label="Some <b>text</b>" value="some-value"></v-radio>
Run Code Online (Sandbox Code Playgroud)
有一个label插槽。
因此,如果您需要html标签,请不要使用prop。
<v-radio value="radio-1">
<template slot="label">
Vuetify is actually <b>Awesome</b>
</template>
</v-radio>
Run Code Online (Sandbox Code Playgroud)