xiwen-tooltip
Version:
文字溢出时,鼠标滑上展示气泡,没有溢出,不展示气泡、支持antd-vue 中 tooltip所有配置
26 lines (20 loc) • 442 B
JavaScript
import XiwenTooltip from './lib/tooltip-antd/index.vue'
import card from './lib/card/index.vue'
// 可以放入多个组件,一起抛出
const components = [
XiwenTooltip,
card
]
export {
XiwenTooltip,
card
}
const install = function(Vue) {
components.forEach(component => {
Vue.component(component.name, component)
})
}
if (typeof window !== 'undefined' && window.Vue) {
install(window.Vue)
}
export default install