You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
640 B

1 month ago
  1. import Container from './src/container.mjs';
  2. import Aside from './src/aside.mjs';
  3. import Footer from './src/footer.mjs';
  4. import Header from './src/header.mjs';
  5. import Main from './src/main.mjs';
  6. import { withInstall, withNoopInstall } from '../../utils/vue/install.mjs';
  7. const ElContainer = withInstall(Container, {
  8. Aside,
  9. Footer,
  10. Header,
  11. Main
  12. });
  13. const ElAside = withNoopInstall(Aside);
  14. const ElFooter = withNoopInstall(Footer);
  15. const ElHeader = withNoopInstall(Header);
  16. const ElMain = withNoopInstall(Main);
  17. export { ElAside, ElContainer, ElFooter, ElHeader, ElMain, ElContainer as default };
  18. //# sourceMappingURL=index.mjs.map