<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/

Logo

前往低代码交流专区

更多推荐