This commit is contained in:
张亚强
2020-06-25 12:12:31 +08:00
parent 67402224f2
commit b1d67811bd
14 changed files with 594 additions and 76 deletions

10
examples/main.js Normal file
View File

@@ -0,0 +1,10 @@
import Vue from 'vue'
import App from './App.vue'
import JsonSchemaEditor from '../packages/json-schema-editor/index'
Vue.config.productionTip = false
Vue.use(JsonSchemaEditor)
new Vue({
render: h => h(App),
}).$mount('#app')