Shariq Ansari 63614b92ca fix: moved address modal to global modals and control it using modals.js
(cherry picked from commit c4caabe72266efa62976281f2a96036261cfc697)
2025-06-05 08:28:03 +00:00

9 lines
239 B
JavaScript

import { ref } from 'vue';
export const showQuickEntryModal = ref(false);
export const quickEntryProps = ref({});
export const showAddressModal = ref(false);
export const addressProps = ref({});
export const showAboutModal = ref(false);