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

11 lines
208 B
JavaScript
Raw Normal View History

2019-01-12 03:33:27 +00:00
import ToolTip from './Tooltip';
import Base from '../base';
/* istanbul ignore next */
2019-01-12 03:33:27 +00:00
ToolTip.install = function(Vue) {
Vue.use(Base);
2019-01-12 03:33:27 +00:00
Vue.component(ToolTip.name, ToolTip);
};
2019-01-12 03:33:27 +00:00
export default ToolTip;