11 lines
345 B
TypeScript
11 lines
345 B
TypeScript
export default defineNuxtPlugin(() => {
|
|
const runtimeConfig = useRuntimeConfig()
|
|
const callerInfoStore = useCallerInfoStore()
|
|
|
|
const callerId = `${runtimeConfig.public.stoveGameId}`
|
|
const callerDetail = `${useCookie('sgs_da_uuid').value || ''}`
|
|
|
|
callerInfoStore.setCallerId(callerId)
|
|
callerInfoStore.setCallerDetail(callerDetail)
|
|
})
|