mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-16 01:41:15 +08:00
9 lines
163 B
JavaScript
9 lines
163 B
JavaScript
import ToolTip from './Tooltip';
|
|
|
|
/* istanbul ignore next */
|
|
ToolTip.install = function(app) {
|
|
app.component(ToolTip.name, ToolTip);
|
|
};
|
|
|
|
export default ToolTip;
|