export const useCallerInfoStore = defineStore('callerInfoStore', () => { const callerId = ref('') const callerDetail = ref('') const setCallerId = (paramCallerId: string | null) => { callerId.value = paramCallerId } const setCallerDetail = (paramCalleDetail: string | null) => { callerDetail.value = paramCalleDetail } return { callerId, callerDetail, setCallerId, setCallerDetail } })