fix(cli): incorrect package entry

This commit is contained in:
陈嘉涵 2019-12-03 21:06:30 +08:00
parent e98e4e7ced
commit 10b7935977

View File

@ -33,7 +33,7 @@ const components = [
function install(Vue) {
components.forEach(item => {
if (item.install) {
Vue.use(Component);
Vue.use(item);
} else if (item.name) {
Vue.component(item.name, item);
}