14 lines
357 B
JavaScript
14 lines
357 B
JavaScript
import {defineStore} from "pinia";
|
|
import {computed, ref} from "vue";
|
|
import {tours} from "../config/tours.js";
|
|
|
|
export const useModalStore = defineStore('modals', () => {
|
|
const showSelectDutyUserModal = ref(false)
|
|
const showSelectNurseUserModal = ref(false)
|
|
|
|
return {
|
|
showSelectDutyUserModal,
|
|
showSelectNurseUserModal,
|
|
}
|
|
})
|