UNPKG

yy-form-making

Version:
22 lines (16 loc) 484 B
import Vue from 'vue' import App from './App.vue' import router from './router' import ElementUI from 'element-ui' import 'element-ui/lib/theme-chalk/index.css' // import FormMaking from 'yy-form-making' // import 'yy-form-making/dist/FormMaking.css' import FormMaking from './index' Vue.use(FormMaking) Vue.config.productionTip = false Vue.use(ElementUI, { size: 'small' }) Vue.prototype.HOST = window.location.origin new Vue({ router, render: h => h(App) }).$mount('#app')