mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-04 04:08:34 +08:00
1584f07f0c
- Code done - Awaiting test cases
6 lines
142 B
TypeScript
6 lines
142 B
TypeScript
import { App } from 'vue'
|
|
import Tooltip from './src/index.vue'
|
|
export default (app: App): void => {
|
|
app.component(Tooltip.name, Tooltip)
|
|
}
|