mirror of
https://gitee.com/xuliangzhan_admin/vxe-table.git
synced 2026-01-21 05:27:57 +08:00
11 lines
228 B
TypeScript
11 lines
228 B
TypeScript
import { App } from 'vue'
|
|
import VxeTooltipComponent from './src/tooltip'
|
|
|
|
export const Tooltip = {
|
|
install: function (app: App) {
|
|
app.component(VxeTooltipComponent.name, VxeTooltipComponent)
|
|
}
|
|
}
|
|
|
|
export default Tooltip
|