import { defineStore } from "pinia"; export const useCounterStore = defineStore("counter", { state: () => ({ count: 0 }), actions: { increment() { this.count++ } } }) // 使用 /* Count: {{ counterStore.count }} Increment */
Count: {{ counterStore.count }}