From 70e2f119ccb66f98b653eb3d8c9d65473f3e9120 Mon Sep 17 00:00:00 2001 From: Tyler-A Date: Wed, 29 Jul 2020 22:49:56 -0600 Subject: [PATCH] Add script for mounting the App component. --- src/main.js | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/main.js diff --git a/src/main.js b/src/main.js new file mode 100644 index 0000000..9d0a5c2 --- /dev/null +++ b/src/main.js @@ -0,0 +1,9 @@ +import Vue from 'vue'; +import App from './App.vue'; + +Vue.config.productionTip = false; + +// eslint-disable-next-line +const app = new Vue({ + render: h => h(App), +}).$mount('#app')