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.
18 lines
315 B
18 lines
315 B
/**
|
|
* 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>;
|
|
}
|
|
}
|
|
|