Change flash mixin

This commit is contained in:
Dane Everitt 2018-12-29 19:24:09 -08:00
parent 96468ab4b3
commit f7ba30fbbe
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
4 changed files with 59 additions and 64 deletions

View file

@ -1,5 +1,6 @@
import Vue from "vue";
import {Store} from "vuex";
import {FlashInterface} from "./mixins/flash";
declare module 'vue/types/options' {
interface ComponentOptions<V extends Vue> {
@ -15,5 +16,6 @@ declare module 'vue/types/options' {
declare module 'vue/types/vue' {
interface Vue {
$store: Store<any>,
$flash: FlashInterface
}
}