mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-15 17:31:43 +08:00
11 lines
209 B
TypeScript
11 lines
209 B
TypeScript
import { App } from 'vue';
|
|
import ToolTip from './Tooltip';
|
|
|
|
/* istanbul ignore next */
|
|
ToolTip.install = function(app: App) {
|
|
app.component(ToolTip.name, ToolTip);
|
|
return app;
|
|
};
|
|
|
|
export default ToolTip;
|