Blame view

apps/components/change-bid-price-dialog/index.js 359 Bytes
邱骏 authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14
import ChangeBidPriceDialog from './change-bid-price-dialog';
import createApi from 'utils/create-api';

ChangeBidPriceDialog.install = function(Vue) {
  Vue.component(ChangeBidPriceDialog.name, ChangeBidPriceDialog);
  createApi(
    Vue,
    ChangeBidPriceDialog,
    ['closeAction', 'confirmAction'],
    true
  );
};

export default ChangeBidPriceDialog;