codevdesign 0.0.96 → 0.0.97
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.
|
@@ -121,6 +121,7 @@
|
|
|
121
121
|
import axios from '@/outils/appAxios'
|
|
122
122
|
import type { Unite } from '@/codev/modeles/unite'
|
|
123
123
|
import { useI18n } from 'vue-i18n'
|
|
124
|
+
const modale = ref<InstanceType<typeof csqcDialogue> | null>(null)
|
|
124
125
|
|
|
125
126
|
interface Chaise {
|
|
126
127
|
id: number
|
|
@@ -130,7 +131,7 @@
|
|
|
130
131
|
uniteId: number
|
|
131
132
|
chaiseId: number
|
|
132
133
|
}
|
|
133
|
-
|
|
134
|
+
|
|
134
135
|
/** Props */
|
|
135
136
|
const props = defineProps<{
|
|
136
137
|
activerDivPreferences?: boolean
|
|
@@ -327,6 +328,7 @@
|
|
|
327
328
|
afficherErreur.value = true
|
|
328
329
|
await nextTick()
|
|
329
330
|
}
|
|
331
|
+
modale.value?.fermer()
|
|
330
332
|
}
|
|
331
333
|
|
|
332
334
|
onMounted(async () => {
|