mirror of
https://github.com/Ssl1S/json-schema-editor-vue.git
synced 2025-12-30 01:37:55 +08:00
12 lines
264 B
JavaScript
12 lines
264 B
JavaScript
import Vue from 'vue'
|
|
import App from './App.vue'
|
|
import JsonSchemaEditor from '../packages/index'
|
|
import { Modal } from 'ant-design-vue'
|
|
Vue.config.productionTip = false
|
|
Vue.use(Modal)
|
|
Vue.use(JsonSchemaEditor)
|
|
|
|
new Vue({
|
|
render: h => h(App),
|
|
}).$mount('#app')
|