django-vue3-admin-web/node_modules/vxe-pc-ui/es/layout-footer/index.js
2025-10-20 21:21:14 +08:00

13 lines
479 B
JavaScript

import { VxeUI } from '@vxe-ui/core';
import VxeLayoutFooterComponent from './src/layout-footer';
import { dynamicApp } from '../dynamics';
export const VxeLayoutFooter = Object.assign({}, VxeLayoutFooterComponent, {
install(app) {
app.component(VxeLayoutFooterComponent.name, VxeLayoutFooterComponent);
}
});
dynamicApp.use(VxeLayoutFooter);
VxeUI.component(VxeLayoutFooterComponent);
export const LayoutFooter = VxeLayoutFooter;
export default VxeLayoutFooter;