PicList/src/renderer/hooks/useStore.ts

7 lines
133 B
TypeScript
Raw Normal View History

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