index.js 233 B

1234567891011121314
  1. import ButtonView from "./ButtonView";
  2. const components = [ButtonView];
  3. function install(app) {
  4. components.forEach((item) => {
  5. item.install && item.install(app);
  6. });
  7. }
  8. export { ButtonView };
  9. export default {
  10. install,
  11. };