summaryrefslogtreecommitdiff
path: root/day9/task5_vue/src/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'day9/task5_vue/src/index.js')
-rw-r--r--day9/task5_vue/src/index.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/day9/task5_vue/src/index.js b/day9/task5_vue/src/index.js
new file mode 100644
index 0000000..4f30725
--- /dev/null
+++ b/day9/task5_vue/src/index.js
@@ -0,0 +1,6 @@
+import Vue from 'vue';
+import App from './App.vue';
+
+new Vue({
+ render: h => h(App)
+}).$mount('#app'); \ No newline at end of file