+
+
+
diff --git a/src/main.js b/src/main.js
index 90c0769..f7775bc 100644
--- a/src/main.js
+++ b/src/main.js
@@ -1,10 +1,16 @@
import Vue from 'vue'
import './plugins/axios'
-import App from './App.vue' // no data because we're not importing it?
-// commenting this out removes the default template, which is a bit weird.
+import App from './App.vue'
+// eslint-disable-next-line no-unused-vars
+import Nexus from 'nexusui'
Vue.config.productionTip = false;
-//Vue.config.runtimeCompiler = true;
+// Vue.config.runtimeCompiler = true;
+
+// https://nexus-js.github.io/ui/api/#intro
+// the following is a convention for defaults of Vue
+// eslint-disable-next-line no-unused-vars
+//var dial = new Nexus.Dial('#dial')
new Vue({
render: h => h(App),