23 lines
664 B
TypeScript
Raw Normal View History

2019-03-15 10:08:39 +08:00
import Vue from 'vue';
import ElementUI from 'element-ui'
import 'element-ui/lib/theme-chalk/index.css'
2019-03-16 15:11:29 +08:00
import index from './index.vue';
2019-03-15 10:08:39 +08:00
import ui_prop from './ui/ui-prop.vue'
import NodeBaseProperty from './ccType/NodeBaseProperty.vue'
import SceneProperty from './ccType/SceneProperty.vue'
import ComponentsProperty from './ccType/ComponentsProperty'
Vue.component('ui-prop', ui_prop);
Vue.component('NodeBaseProperty', NodeBaseProperty);
Vue.component('SceneProperty', SceneProperty);
Vue.component('ComponentsProperty', ComponentsProperty);
Vue.component('ColorPicker', ColorPicker);
Vue.use(ElementUI);
new Vue({
el: '#app',
2019-03-16 15:11:29 +08:00
render: h => h(index)
2019-03-15 10:08:39 +08:00
});