update
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
import { defineStore } from 'pinia';
|
||||
|
||||
export const useDetailStore = defineStore({
|
||||
id: 'detail-store',
|
||||
state: () => ({
|
||||
alerdyreceive: '',
|
||||
totalacceptance: '',
|
||||
}),
|
||||
actions: {
|
||||
setAlerdyreceive(info) {
|
||||
this.alerdyreceive = info;
|
||||
},
|
||||
setTotalacceptance(info) {
|
||||
this.totalacceptance = info;
|
||||
},
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user