fix(FormGroup): prevent input click from propagating to label (#651)

This commit is contained in:
Romain Hamel
2023-09-12 16:01:01 +02:00
committed by GitHub
parent 83d609d530
commit 4c5833083f

View File

@@ -8,7 +8,7 @@
<p v-if="description" :class="[ui.description, size]">{{ description }}</p>
<div :class="[label ? ui.container : '']">
<div :class="[label ? ui.container : '']" @click="$event.preventDefault()">
<slot v-bind="{ error }" />
<p v-if="error && typeof error !== 'boolean'" :class="[ui.error, size]">{{ error }}</p>