summaryrefslogtreecommitdiff
path: root/src/main.js
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2018-06-09 12:58:38 +0300
committerYuval Adam <_@yuv.al>2018-06-09 12:58:38 +0300
commitb366f20c3bc0f96565647fada14c55c37b57a568 (patch)
tree028145a547bd4390930d6bc24ab21c2969f344cf /src/main.js
Initial vue project
Diffstat (limited to 'src/main.js')
-rw-r--r--src/main.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/main.js b/src/main.js
new file mode 100644
index 0000000..684ffac
--- /dev/null
+++ b/src/main.js
@@ -0,0 +1,13 @@
+// The Vue build version to load with the `import` command
+// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
+import Vue from 'vue'
+import App from './App'
+
+Vue.config.productionTip = false
+
+/* eslint-disable no-new */
+new Vue({
+ el: '#app',
+ components: { App },
+ template: '<App/>'
+})