Files
mayfly-go/frontend/src/store/autoOpenResource.ts

18 lines
362 B
TypeScript
Raw Normal View History

import { defineStore } from 'pinia';
/**
*
*/
export const useAutoOpenResource = defineStore('autoOpenResource', {
state: () => ({
autoOpenResource: {
codePath: '',
},
}),
actions: {
setCodePath(codePath: string) {
this.autoOpenResource.codePath = codePath;
},
},
});