2
0
mirror of https://github.com/tenrok/vue-tribute.git synced 2026-06-17 16:30:39 +03:00

1.0 release

This commit is contained in:
Collin Henderson
2018-03-25 14:35:33 -04:00
commit adcd76db33
21 changed files with 9823 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
import Vue from 'vue'
import App from './App'
new Vue({
el: '#app',
render(h) {
return h(App)
}
})