import Vue from "vue";
import { Base } from "@planetadeleste/vue-mc";
import { AuthModule } from "@/store/auth";
import { LoadingModule } from "@/store/loading";
import { FlashModule } from "@/store/flash";
const laroute = require("./laroute.js");
Base.$resolve = laroute.route;
Base.$authModule = AuthModule;
Base.$flashModule = FlashModule;
Base.$loadingModule = LoadingModule;
Base.$http = Vue.axios;