0
0
Fork 0

fix: refs #6891 parking basicData

This commit is contained in:
Jorge Penadés 2024-05-08 12:59:56 +02:00
parent 80336868dc
commit f7b6f3b9e1
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
<script setup>
import { ref } from 'vue';
import { ref, computed } from 'vue';
import { useRoute } from 'vue-router';
import { useI18n } from 'vue-i18n';
import VnRow from 'components/ui/VnRow.vue';
@ -10,7 +10,7 @@ import VnSelect from 'src/components/common/VnSelect.vue';
const { t } = useI18n();
const route = useRoute();
const parkingId = route.params?.id || null;
const parkingId = computed(() => route.params?.id || null);
const sectors = ref([]);
const sectorFilter = { fields: ['id', 'description'] };