@mythpe/quasar-ui-qui 0.1.43 → 0.1.45
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -176,7 +176,6 @@ defineOptions({
|
|
|
176
176
|
:disable="viewMode"
|
|
177
177
|
:false-value="falseValue"
|
|
178
178
|
:indeterminate-value="indeterminateValue"
|
|
179
|
-
:label="getLabel || undefined"
|
|
180
179
|
:model-value="value"
|
|
181
180
|
:true-value="trueValue"
|
|
182
181
|
v-bind="{
|
|
@@ -189,6 +188,7 @@ defineOptions({
|
|
|
189
188
|
color: !!errorMessage ? 'negative' : getProp('color'),
|
|
190
189
|
indeterminateIcon: getProp('indeterminateIcon'),
|
|
191
190
|
keepColor: getProp('keepColor'),
|
|
191
|
+
label: getLabel || undefined
|
|
192
192
|
}"
|
|
193
193
|
v-on="listeners"
|
|
194
194
|
>
|
|
@@ -67,6 +67,9 @@ export const useBindInput = <P extends G = G> (Props: MaybeRefOrGetter<P>, key:
|
|
|
67
67
|
if (k && k.indexOf('.*.') !== -1) {
|
|
68
68
|
return __(k.split('.').pop()) || undefined
|
|
69
69
|
}
|
|
70
|
+
if (k === null) {
|
|
71
|
+
return undefined
|
|
72
|
+
}
|
|
70
73
|
return k ? (__(k) || undefined) : undefined
|
|
71
74
|
})
|
|
72
75
|
const getPlaceholder = computed<string | undefined>(() => {
|