Adds an (optional) status check feature, plus some refactoring
This commit is contained in:
@@ -1,12 +1,14 @@
|
||||
import Vue from 'vue';
|
||||
|
||||
/* Import component Vue plugins, used throughout the app */
|
||||
import VTooltip from 'v-tooltip'; // A Vue directive for Popper.js, tooltip component
|
||||
import VModal from 'vue-js-modal'; // Modal component
|
||||
import VSelect from 'vue-select'; // Select dropdown component
|
||||
import VTabs from 'vue-material-tabs'; // Tab view component, used on the config page
|
||||
import Toasted from 'vue-toasted'; // Toast component, used to show confirmation notifications
|
||||
|
||||
import { toastedOptions } from './utils/defaults';
|
||||
import App from './App.vue';
|
||||
import Dashy from './App.vue';
|
||||
import router from './router';
|
||||
import './registerServiceWorker';
|
||||
|
||||
@@ -20,5 +22,5 @@ Vue.config.productionTip = false;
|
||||
|
||||
new Vue({
|
||||
router,
|
||||
render: (awesome) => awesome(App),
|
||||
render: (awesome) => awesome(Dashy),
|
||||
}).$mount('#app');
|
||||
|
||||
Reference in New Issue
Block a user