16 lines
252 B
JavaScript
16 lines
252 B
JavaScript
import { defineStore } from 'pinia';
|
|
|
|
export const useCounterStore = defineStore('counter', {
|
|
state: () => ({
|
|
counter: 0,
|
|
}),
|
|
getters: {
|
|
doubleCount: (state) => state.counter * 2,
|
|
},
|
|
actions: {
|
|
increment () {
|
|
this.counter++;
|
|
},
|
|
},
|
|
});
|