12 lines
207 B
TypeScript
12 lines
207 B
TypeScript
|
import { defineStore } from 'pinia';
|
||
|
|
||
|
export const pageDataInfo = defineStore('info', {
|
||
|
state: () => ({
|
||
|
userInfos: {},
|
||
|
}),
|
||
|
actions: {
|
||
|
putInProdPageData(obj:object) {
|
||
|
this.userInfos = obj
|
||
|
}
|
||
|
}
|
||
|
});
|