iview/examples/components/test.vue
梁灏 fcf3cace8e Poptip & Tooltip add transfer prop
Using transfer prop, the dom will be transfered to body.
2017-07-18 17:46:41 +08:00

10 lines
229 B
Vue

<template>
<Poptip trigger="hover" title="提示标题" :transfer="true" placement="left" content="提示内容">
<Button>hover 激活</Button>
</Poptip>
</template>
<script>
export default {
}
</script>