fix(components): allow override of root through ui.root

This commit is contained in:
Benjamin Canac
2024-09-05 10:37:39 +02:00
parent 59201e3a67
commit 47ad74d029
24 changed files with 25 additions and 25 deletions

View File

@@ -99,7 +99,7 @@ function onChange(value: any) {
v-model="sliderValue"
:name="name"
:disabled="disabled"
:class="ui.root({ class: props.class })"
:class="ui.root({ class: [props.class, props.ui?.root] })"
:default-value="defaultSliderValue"
@update:model-value="emitFormInput()"
@value-commit="onChange"