15 lines
293 B
JavaScript
15 lines
293 B
JavaScript
|
import { defineStore } from 'pinia'
|
||
|
|
||
|
export const useUserStore = defineStore('user', {
|
||
|
state: () => {
|
||
|
return { user: null }
|
||
|
},
|
||
|
// could also be defined as
|
||
|
// state: () => ({ count: 0 })
|
||
|
actions: {
|
||
|
increment() {
|
||
|
this.count++
|
||
|
},
|
||
|
},
|
||
|
})
|