vue中如何给el-radio添加tooltip并实现点击跳转
<el-tooltip :disabled="toolTipDisable" placement="bottom" effect="light"><div slot="content" @click="goToRout()">{{toolTipContent}}</div><el-radio label="3">New Youk&...
·
<el-tooltip :disabled="toolTipDisable" placement="bottom" effect="light">
<div slot="content" @click="goToRout()">{{toolTipContent}}</div>
<el-radio label="3">New Youk</el-radio>
</el-tooltip>
goToRout(){
let routeData = this.$router.resolve({name: '/your url', params: {active:'1'}});
window.open(routeData.href, '_blank');
}
说明:
(1)toolTipDisable:可控制tooltip是否可用
(2)slot=“content”:表示tooltip提示的内容指定已DOM格式插入到页面
(3)goToRout():路由跳转方法
(4)toolTipContent:提示的内容信息
欢迎大家访问我的个人博客:http://blog.ycsn.xyz/
更多推荐
已为社区贡献3条内容
所有评论(0)