hotFix(orderCatalogFilter): fix searchByTag #961

Merged
alexm merged 8 commits from hotFix_orderCatalogFilter_values into master 2024-11-21 09:09:52 +00:00
2 changed files with 1 additions and 2 deletions
Showing only changes of commit 44f2ecca28 - Show all commits

View File

@ -1,6 +1,5 @@
<script setup>
import { useRoute } from 'vue-router';
import { defineProps } from 'vue';
const props = defineProps({
routeName: {

View File

@ -16,7 +16,7 @@ const router = useRouter();
const stateStore = useStateStore();
const { t } = useI18n();
const dataKey = 'OrderCatalogList';
alexm marked this conversation as resolved Outdated

El parámetro aparece 4 veces, propuesta, de crear una constante, o desde el front llamar a arrayData.key

El parámetro aparece 4 veces, propuesta, de crear una constante, o desde el front llamar a arrayData.key
const arrayData = useArrayData('dataKey');
const arrayData = useArrayData(dataKey);
const store = arrayData.store;
const showFilter = ref(null);
const tags = ref([]);