add dev mode, update readme

This commit is contained in:
ayou
2018-03-07 22:03:07 +08:00
parent fc5b9f58ff
commit 01eca7d2a3
10 changed files with 1294 additions and 99 deletions

9
dev/index.js Normal file
View File

@@ -0,0 +1,9 @@
/**
* Created by ayou on 18/3/7.
*/
import Vue from 'vue'
import App from './App.vue'
new Vue({
render: h => h(App)
}).$mount('#app')