index.ts 190 B

123456789101112
  1. import { defineStore } from 'pinia'
  2. export const useMainStore = defineStore('main', {
  3. state: () => ({
  4. count: 0,
  5. }),
  6. actions: {
  7. increment() {
  8. this.count++
  9. },
  10. },
  11. })