You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
417 B
17 lines
417 B
import ElementUI from 'element-ui';
|
|
import 'element-ui/lib/theme-chalk/index.css';
|
|
import Vue from 'vue';
|
|
import vueJsonEditor from 'vue-json-editor';
|
|
import JsonSchemaEditor from 'vue-json-schema-editor-visual';
|
|
import App from './App.vue';
|
|
|
|
Vue.use(ElementUI, { size: 'small' });
|
|
Vue.use(JsonSchemaEditor);
|
|
Vue.use(vueJsonEditor);
|
|
|
|
Vue.config.productionTip = false
|
|
|
|
new Vue({
|
|
el: '#app',
|
|
render: h => h(App)
|
|
})
|