9 lines
219 B
TypeScript
9 lines
219 B
TypeScript
import { defineStore } from 'pinia';
|
|
import type { Warren } from '~/types/warrens';
|
|
|
|
export const useWarrenStore = defineStore('warrens', {
|
|
state: () => ({
|
|
warrens: {} as Record<string, Warren>,
|
|
}),
|
|
});
|