Skip to content

Extend store with typescript

Sylvain Fargier requested to merge wip-ts into master

trying to directly extend vue with something like:

declare module "vue" {
  interface Vue {
    $store: Store<BaseVue.Store>
  }
}

doesn't seem to work ($store is still Store<any>)

will test a bit more this afternoon

Merge request reports