mirror of
https://github.com/element-plus/element-plus.git
synced 2024-12-09 02:31:33 +08:00
6 lines
138 B
TypeScript
6 lines
138 B
TypeScript
import { App } from 'vue'
|
|
import Tooltip from './src/index'
|
|
export default (app: App): void => {
|
|
app.component(Tooltip.name, Tooltip)
|
|
}
|