@mythpe/quasar-ui-qui 0.2.36 → 0.2.38
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
|
@@ -112,7 +112,12 @@ const prepare = async (fromWatch = !1, merge = {}) => {
|
|
|
112
112
|
})
|
|
113
113
|
}
|
|
114
114
|
const listeners = {
|
|
115
|
-
'update:search':
|
|
115
|
+
'update:search': (val: any) => {
|
|
116
|
+
if (!val && fieldValue.value) {
|
|
117
|
+
return
|
|
118
|
+
}
|
|
119
|
+
prepare()
|
|
120
|
+
},
|
|
116
121
|
model: (v: MSelectModelEmit) => emit('model', v)
|
|
117
122
|
}
|
|
118
123
|
onMounted(() => {
|
|
@@ -300,7 +300,6 @@ defineOptions({
|
|
|
300
300
|
/>
|
|
301
301
|
<MBtn
|
|
302
302
|
v-close-popup
|
|
303
|
-
color="secondary"
|
|
304
303
|
label="labels.close"
|
|
305
304
|
/>
|
|
306
305
|
</div>
|
|
@@ -328,7 +327,6 @@ defineOptions({
|
|
|
328
327
|
/>
|
|
329
328
|
<MBtn
|
|
330
329
|
v-close-popup
|
|
331
|
-
color="secondary"
|
|
332
330
|
label="labels.close"
|
|
333
331
|
/>
|
|
334
332
|
</div>
|