index.js 237 B

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