felicity-lims/types/index.d.ts
2023-04-07 17:52:19 +02:00

7 lines
150 B
TypeScript

import Store from '../src/store/index';
declare module '@vue/runtime-core' {
interface ComponentCustomProperties {
$store: typeof Store;
}
}