captain-ui
Version:
有赞vue wap业务组件库
17 lines (14 loc) • 315 B
JavaScript
;
exports.__esModule = true;
exports.default = _default;
/**
* Create a basic component with common options
*/
var install = function install(Vue) {
Vue.component(this.name, this);
};
function _default(sfc) {
sfc.name = 'cap-' + sfc.name;
sfc.install = sfc.install || install;
return sfc;
}