UNPKG

asp-smart-ui-plus-test

Version:

A Component Library for Vue 3

20 lines (17 loc) 616 B
import { withInstall, withNoopInstall } from 'element-plus/es/utils/index'; import Container from './src/container.mjs'; import Aside from './src/aside.mjs'; import Footer from './src/footer.mjs'; import Header from './src/header.mjs'; import Main from './src/main.mjs'; const AspContainer = withInstall(Container, { Aside, Footer, Header, Main }); const AspAside = withNoopInstall(Aside); const AspFooter = withNoopInstall(Footer); const AspHeader = withNoopInstall(Header); const AspMain = withNoopInstall(Main); export { AspAside, AspContainer, AspFooter, AspHeader, AspMain, AspContainer as default };