@paris-ias/list 1.0.103 → 1.0.105
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
|
@@ -115,7 +115,7 @@ const results = computed(() => {
|
|
|
115
115
|
});
|
|
116
116
|
const search = computed({
|
|
117
117
|
get() {
|
|
118
|
-
return
|
|
118
|
+
return rootStore.search;
|
|
119
119
|
},
|
|
120
120
|
set: await useDebounceFn(async function(v) {
|
|
121
121
|
await rootStore.updateSearch({
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
</template>
|
|
41
41
|
|
|
42
42
|
<script setup>
|
|
43
|
-
import { mergeProps
|
|
43
|
+
import { mergeProps } from "vue";
|
|
44
44
|
import { useDisplay } from "vuetify";
|
|
45
45
|
import { useRootStore } from "../../../stores/root";
|
|
46
46
|
import { useNuxtApp, ref, useI18n } from "#imports";
|
|
@@ -108,7 +108,6 @@ export default defineNuxtPlugin(async (nuxtApp) => {
|
|
|
108
108
|
const queries = {};
|
|
109
109
|
const models = {};
|
|
110
110
|
const builtFilters = await import("../public/filters.json");
|
|
111
|
-
console.log("Filters loaded successfully:", builtFilters);
|
|
112
111
|
console.log("INITIALIZING STORES");
|
|
113
112
|
await Promise.all(
|
|
114
113
|
appConfig.list.modules.map(async (type) => {
|