<el-button> 点击后跳转指定 url 链接
*Vue + elementUI** 的项目前端遇到了这样一个问题:如何实现点击 button 后,直接跳转到指定的 web_url ?
·
Vue + elementUI 的项目前端遇到了这样一个问题:
如何实现点击 button 后,直接跳转到指定的 web_url ?
这里提供一个解决方案,仅供学习和参考。
<el-button size="small" >
<a :href="this.webUrl" target="_blank" style="text-decoration: none">
进入团队项目组
</a>
</el-button>
其中:
① this.webUrl 是 web url 链接;
② target=“_blank” 规定在新的页面中打开链接;
③ style=“text-decoration: none” 去除超链接的下划线。
更多推荐
已为社区贡献4条内容
所有评论(0)