UNPKG

vue-questionnaire-create

Version:

管理端问卷创建组件(vue)

17 lines (13 loc) 397 B
// 打包到生产环境的入口文件 import Questionnaire from './src/components/questionnaire' const components = [Questionnaire] const install = function(Vue = {}) { components.map(component => { Vue.component(component.name, component) }) } /* 支持使用标签的方式引入 */ if (typeof window !== 'undefined' && window.Vue) { install(window.Vue) } export default Questionnaire