mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-13 17:05:47 +08:00
12 lines
360 B
TypeScript
12 lines
360 B
TypeScript
import { App } from 'vue'
|
|
import type { SFCWithInstall } from '@element-plus/utils/types'
|
|
import BreadcrumbItem from '../breadcrumb/src/item.vue'
|
|
|
|
BreadcrumbItem.install = (app: App): void => {
|
|
app.component(BreadcrumbItem.name, BreadcrumbItem)
|
|
}
|
|
|
|
const _BreadcrumbItem: SFCWithInstall<typeof BreadcrumbItem> = BreadcrumbItem
|
|
|
|
export default _BreadcrumbItem
|