2022-02-11 11:03:15 +08:00
|
|
|
import { withInstall } from '@element-plus/utils'
|
2022-01-04 09:15:15 +08:00
|
|
|
import Tooltip from './src/tooltip.vue'
|
2024-08-07 12:01:46 +08:00
|
|
|
import type { SFCWithInstall } from '@element-plus/utils'
|
2021-08-24 13:36:48 +08:00
|
|
|
|
2024-08-07 12:01:46 +08:00
|
|
|
export const ElTooltip: SFCWithInstall<typeof Tooltip> = withInstall(Tooltip)
|
2022-01-04 09:15:15 +08:00
|
|
|
export * from './src/tooltip'
|
2022-09-20 11:31:05 +08:00
|
|
|
export * from './src/trigger'
|
|
|
|
export * from './src/content'
|
2023-03-01 13:59:21 +08:00
|
|
|
export * from './src/constants'
|
2022-01-04 09:15:15 +08:00
|
|
|
export default ElTooltip
|