index.js 251 Bytes
import PromotionList from './promotion-list';
import addPromotionList from './api';

PromotionList.install = function(Vue) {
  Vue.component(PromotionList.name, PromotionList);
  addPromotionList(Vue, PromotionList);
};

export default PromotionList;