counter.js 194 B

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