commonStore.js 197 Bytes RawBlameHistoryPermalink 1 2 3 4 5 6 7 8 9 10 11 12 import { defineStore } from 'pinia' export const useCommonStore = defineStore('common', { state: () => ({ index: 0 }), actions: { setIndex(val) { this.index = val } } })