Get account pages working

This commit is contained in:
Dane Everitt 2018-12-30 15:07:12 -08:00
parent 11a70b0343
commit 0c2b2b4341
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
10 changed files with 417 additions and 416 deletions

View file

@ -3,6 +3,7 @@ import {Store} from "vuex";
import {FlashInterface} from "./mixins/flash";
import {AxiosInstance} from "axios";
import {Vue as VueType} from "vue/types/vue";
import {ApplicationState} from "./store/types";
declare global {
interface Window {
@ -17,7 +18,7 @@ declare global {
declare module 'vue/types/options' {
interface ComponentOptions<V extends Vue> {
$store?: Store<any>,
$store?: Store<ApplicationState>,
$options?: {
sockets?: {
[s: string]: (data: any) => void,