Files
mayfly-go/frontend/src/store/autoOpenResource.ts
2025-08-31 21:46:10 +08:00

18 lines
362 B
TypeScript

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