UNPKG

eagle-web-ui

Version:
21 lines (18 loc) 376 B
// import all used components in whole projects import { Layout } from "ant-design-vue"; import { App } from "vue"; const components = [ Layout, Layout.Header, Layout.Footer, Layout.Sider, Layout.Content, ]; const install = (app: App) => { components.forEach((component) => { app.component(component.name, component); }); }; export default { install, };