index.ts 529 B

12345678910111213141516
  1. import { VueConstructor } from 'vue'
  2. import { VxeUI } from '@vxe-ui/core'
  3. import { dynamicApp } from '../dynamics'
  4. import VxeLayoutFooterComponent from './src/layout-footer'
  5. export const VxeLayoutFooter = Object.assign({}, VxeLayoutFooterComponent, {
  6. install (app: VueConstructor) {
  7. app.component(VxeLayoutFooterComponent.name as string, VxeLayoutFooterComponent)
  8. }
  9. })
  10. dynamicApp.use(VxeLayoutFooter)
  11. VxeUI.component(VxeLayoutFooterComponent)
  12. export const LayoutFooter = VxeLayoutFooter
  13. export default VxeLayoutFooter