import { defineStore } from 'pinia' export const useCounterStore = defineStore('counter', { state: () => ({ active: 1, }), actions: { increment(index:any) { this.active = index }, }, })