UNPKG

captain-ui

Version:

有赞vue wap业务组件库

12 lines (11 loc) 251 B
/** * Create a basic component with common options */ var install = function install(Vue) { Vue.component(this.name, this); }; export default function (sfc) { sfc.name = 'cap-' + sfc.name; sfc.install = sfc.install || install; return sfc; }