summaryrefslogtreecommitdiff
path: root/day9/task5_vue/src/index.js
diff options
context:
space:
mode:
authorAndrew <saintruler@gmail.com>2019-07-18 23:12:10 +0400
committerAndrew <saintruler@gmail.com>2019-07-18 23:12:10 +0400
commit70c3b1e1c5e1bbc354fe5961bae613bd23c4d8a2 (patch)
treee13b70feca0d8cdb10ced6fac91456990ae3f661 /day9/task5_vue/src/index.js
parent473318701040f238fcbef81a404b069b68d64237 (diff)
Переписал приложение на Vue. Изменена верстка.
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