grantthomas-nuxt 1.0.23 → 1.0.24
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/dist/module.json
CHANGED
|
@@ -208,6 +208,11 @@ const dialogOpen = computed({
|
|
|
208
208
|
}
|
|
209
209
|
}
|
|
210
210
|
});
|
|
211
|
+
watch(dialogOpen, (isOpen) => {
|
|
212
|
+
if (isOpen) {
|
|
213
|
+
hideActions.value = false;
|
|
214
|
+
}
|
|
215
|
+
});
|
|
211
216
|
const page = computed(() => props.loaderKey ? parseQuery(route.query[props.loaderKey])?.page ?? 1 : route.query.page ?? 1);
|
|
212
217
|
const filterValues = props.loaderKey ? ref({ ...props.customFilters, ...parseQuery(route.query[props.loaderKey]) }) : ref({ ...props.customFilters, ...route.query });
|
|
213
218
|
const onQueryChange = (page2) => {
|