标签:link method ons god ram ams highlight 新窗口 导航
Problem:在vue项目中突然接收到一个需要新开页面的功能
通过看了vue-router,实现这个功能也是可以,详情如下:
<router-link target="_blank" :to="{ path:‘/details‘, query: { id:‘1‘ } }">详情</router-link>
methods: { goDetails (id) { const { href } = this.$router.resolve({ path: `/details`, params: { id: id } }); window.open(href, "_blank"); } }
标签:link method ons god ram ams highlight 新窗口 导航
原文地址:https://www.cnblogs.com/zaijin-yang/p/11971210.html