Stage one of migration complete, now need to pick through and implement individual changes

This commit is contained in:
2019-10-25 18:34:30 +00:00
parent d341c8b0d4
commit 16b925baac
5 changed files with 115 additions and 603 deletions

View File

@@ -1,8 +1,10 @@
/* XXXeslint-disable */
import "@babel/polyfill";
import "@fortawesome/fontawesome-free/css/all.css";
import "typeface-roboto/index.css";
import Vue from "vue";
import "./plugins/vuetify";
//import "./plugins/vuetify";
import Vuetify from "./plugins/vuetify";
import App from "./App.vue";
import router from "./router";
import store from "./store";
@@ -82,6 +84,10 @@ window.onerror = errorHandler.handleGeneralError;
//warnings, only occur by default in debug mode not production
Vue.config.warnHandler = errorHandler.handleVueWarning;
//added for vuetify 2.x to disable annoying prodution mode tip warning
//but commented out for now just to see what it looks like
//Vue.config.productionTip = false;
/////////////////////////////////////////////////////////////////
// AJAX LOADER INDICATOR
//
@@ -178,10 +184,15 @@ Vue.directive("focus", {
}
});
// console.log(Vue);
// console.log(Vuetify);
// debugger;
/////////////////////////////////////////////////////////////////
// INSTANTIATE
//
new Vue({
vuetify: Vuetify,
router,
store,
render: h => h(App)