global.d.ts 162 B

123456789
  1. import { Store } from 'vuex'
  2. declare module '@vue/runtime-core' {
  3. interface State {
  4. }
  5. interface ComponentCustomProperties {
  6. $store: Store<State>
  7. }
  8. }