mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-02 23:40:24 +08:00
18 lines
362 B
TypeScript
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;
|
|
},
|
|
},
|
|
});
|