index.js 251 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 import PromotionList from './promotion-list'; import addPromotionList from './api'; PromotionList.install = function(Vue) { Vue.component(PromotionList.name, PromotionList); addPromotionList(Vue, PromotionList); }; export default PromotionList;