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