index.js 967 B

12345678910111213141516171819202122
  1. /* eslint-disable */
  2. import SalesReport from "./SalesReport";
  3. import SalesReportRejected from "./SalesReportRejected";
  4. import SalesReportRejectedSettlement from "./SalesReportRejectedSettlement";
  5. import SalesReportM from "./SalesReportM";
  6. import SalesReportRejectedSettlementNew from "./SalesReportRejectedSettlementNew";
  7. import SalesReportRejectedNew from "./SalesReportRejectedNew"
  8. import returnReport from "./returnReport"
  9. export default {
  10. install(Vue) {
  11. // 全局注册组件
  12. Vue.component(SalesReport.name, SalesReport);
  13. Vue.component(SalesReportRejected.name, SalesReportRejected);
  14. Vue.component(SalesReportM.name, SalesReportM);
  15. Vue.component(SalesReportRejectedSettlement.name, SalesReportRejectedSettlement);
  16. Vue.component(SalesReportRejectedSettlementNew.name, SalesReportRejectedSettlementNew);
  17. Vue.component(SalesReportRejectedNew.name, SalesReportRejectedNew)
  18. Vue.component(returnReport.name, returnReport)
  19. }
  20. };