2021-09-26 22:09:33 +00:00
|
|
|
import type { App } from 'vue'
|
|
|
|
import Component from './index.vue'
|
|
|
|
import type { IDefineComponent } from '../type/index'
|
|
|
|
|
|
|
|
Component.install = (app: App) => {
|
2021-10-12 03:30:07 +00:00
|
|
|
app.component(Component.name || 'LayFooter', Component)
|
2021-09-26 22:09:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export default Component as IDefineComponent
|