8 lines
178 B
TypeScript
8 lines
178 B
TypeScript
import { Store } from 'vuex'
|
|
import { RootState } from '~/store'
|
|
|
|
declare module '@vue/runtime-core' {
|
|
interface ComponentCustomProperties {
|
|
$store: Store<RootState>
|
|
}
|
|
}
|