mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-05 12:48:04 +08:00
14 lines
305 B
TypeScript
14 lines
305 B
TypeScript
import Link from './src/index.vue'
|
|
|
|
import type { App } from 'vue'
|
|
import type { SFCWithInstall } from '@element-plus/utils/types'
|
|
|
|
Link.install = (app: App): void => {
|
|
app.component(Link.name, Link)
|
|
}
|
|
|
|
const _Link = Link as SFCWithInstall<typeof Link>
|
|
|
|
export default _Link
|
|
export const ElLink = _Link
|