layui/src/module/breadcrumbItem/index.ts

9 lines
273 B
TypeScript
Raw Normal View History

import type { App } from 'vue'
import Component from './index.vue'
import type { IDefineComponent } from '../type/index'
Component.install = (app: App) => {
app.component(Component.name || 'LayBreadcrumbItem', Component)
}
export default Component as IDefineComponent