export default defineStore('image-viewer', { state: () => ({ src: null as string | null, }), actions: { open(src: string) { this.src = src; }, close() { this.src = null; }, }, });