ant-design-vue/components/tooltip/index.ts

11 lines
209 B
TypeScript
Raw Normal View History

2020-10-18 14:14:39 +00:00
import { App } from 'vue';
2019-01-12 03:33:27 +00:00
import ToolTip from './Tooltip';
/* istanbul ignore next */
2020-10-18 14:14:39 +00:00
ToolTip.install = function(app: App) {
2020-06-09 10:30:18 +00:00
app.component(ToolTip.name, ToolTip);
2020-10-13 11:14:56 +00:00
return app;
2019-01-12 03:33:27 +00:00
};
2019-01-12 03:33:27 +00:00
export default ToolTip;