index.js 367 B

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