vuex.d.ts 191 B

12345678
  1. import { Store } from "@/store/Store";
  2. import { ComponentCustomProperties } from "vue";
  3. declare module "@vue/runtime-core" {
  4. interface ComponentCustomProperties {
  5. $store: Store;
  6. }
  7. }