mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-15 17:31:43 +08:00
a6620cbbe5
* feat: add Vue.use feat * feat: Vue.use method * docs: update docs
10 lines
161 B
JavaScript
10 lines
161 B
JavaScript
import ToolTip from './Tooltip'
|
|
|
|
/* istanbul ignore next */
|
|
ToolTip.install = function (Vue) {
|
|
Vue.component(ToolTip.name, ToolTip)
|
|
}
|
|
|
|
export default ToolTip
|
|
|