mirror of https://github.com/veypi/OneAuth.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
268 B
TypeScript
16 lines
268 B
TypeScript
|
2 years ago
|
import { defineStore } from 'pinia';
|
||
|
|
|
||
|
|
export const useCounterStore = defineStore('counter', {
|
||
|
|
state: () => ({
|
||
|
|
counter: 0,
|
||
|
|
}),
|
||
|
|
getters: {
|
||
|
|
doubleCount: (state) => state.counter * 2,
|
||
|
|
},
|
||
|
|
actions: {
|
||
|
|
increment() {
|
||
|
|
this.counter++;
|
||
|
|
},
|
||
|
|
},
|
||
|
|
});
|