You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
315 B
19 lines
315 B
|
3 years ago
|
/**
|
||
|
|
* Extends interfaces in Vue.js
|
||
|
|
*/
|
||
|
|
|
||
|
|
import Vue, { ComponentOptions } from "vue";
|
||
|
|
import { Store } from "./index";
|
||
|
|
|
||
|
|
declare module "vue/types/options" {
|
||
|
|
interface ComponentOptions<V extends Vue> {
|
||
|
|
store?: Store<any>;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
declare module "vue/types/vue" {
|
||
|
|
interface Vue {
|
||
|
|
$store: Store<any>;
|
||
|
|
}
|
||
|
|
}
|