11 lines
352 B
TypeScript
11 lines
352 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);
|
|
});
|