We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1b6d571 + 6547c40 commit 978ea0bCopy full SHA for 978ea0b
src/formGroup.vue
@@ -3,7 +3,10 @@
3
<label v-if="hasLabel" :for="fieldId" :class="field.labelClasses">
4
<span>
5
<i v-if="hasIconBefore" :class="field.labelIcon.iconClass" />
6
- {{ field.label }}
+ <template v-if="field.labelHtml">
7
+ <span v-html="field.label" />
8
+ </template>
9
+ <template v-else>{{ field.label }}</template>
10
<i v-if="hasIconAfter" :class="field.labelIcon.iconClass" />
11
</span>
12
<span v-if="field.help" class="help">
0 commit comments