index.js 300 B

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