mirror of
https://github.com/element-plus/element-plus.git
synced 2025-01-24 11:05:17 +08:00
9 lines
159 B
TypeScript
9 lines
159 B
TypeScript
import { App } from 'vue'
|
|
import Tooltip from './src/index'
|
|
|
|
export default (app: App): void => {
|
|
app.component(Tooltip.name, Tooltip)
|
|
}
|
|
|
|
export { Tooltip }
|