PicList/src/renderer/hooks/useStore.ts
2023-01-07 17:43:35 +08:00

7 lines
133 B
TypeScript

import { inject } from 'vue'
import { storeKey } from '@/store'
export const useStore = () => {
return inject(storeKey) ?? null
}