15 lines
222 B
JavaScript
15 lines
222 B
JavaScript
import { defineStore } from 'pinia';
|
|
|
|
export const useUserStore = defineStore('user', {
|
|
state: () => {
|
|
return {
|
|
token: ''
|
|
};
|
|
},
|
|
actions: {
|
|
userLogin(token) {
|
|
this.token = token;
|
|
}
|
|
}
|
|
});
|