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