Skip to content

Commit

Permalink
update build
Browse files Browse the repository at this point in the history
  • Loading branch information
iamkun committed May 27, 2019
1 parent 593c19f commit 437eaac
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build/bin/build-entry.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ const install = function(Vue, opts = {}) {
Vue.component(component.name, component);
});
Vue.use(InfiniteScroll);
Vue.use(Loading.directive);
Vue.prototype.$ELEMENT = {
Expand Down Expand Up @@ -76,7 +77,7 @@ ComponentNames.forEach(name => {
package: name
}));

if (['Loading', 'MessageBox', 'Notification', 'Message'].indexOf(componentName) === -1) {
if (['Loading', 'MessageBox', 'Notification', 'Message', 'InfiniteScroll'].indexOf(componentName) === -1) {
installTemplate.push(render(INSTALL_COMPONENT_TEMPLATE, {
name: componentName,
component: name
Expand Down

0 comments on commit 437eaac

Please sign in to comment.