element-plus/packages/footer/index.ts

10 lines
178 B
TypeScript
Raw Normal View History

import { App } from 'vue'
import Footer from '../container/src/footer.vue'
Footer.install = (app: App): void => {
app.component(Footer.name, Footer)
}
export default Footer