vue-router 在新窗口打开页面的功能
Problem:在vue项目中突然接收到一个需要新开页面的功能
通过看了vue-router,实现这个功能也是可以,详情如下:
1.通过<router-link>标签实现新窗口打开
<router-link target="_blank" :to="{ path:‘/details‘, query: { id:‘1‘ } }">详情</router-link>
2.通过Function进行导航
methods: { goDetails (id) { const { href } = this.$router.resolve({ path: `/details`, params: { id: id } }); window.open(href, "_blank"); } }
相关推荐
前端小白 2020-07-19
85423468 2020-07-19
bowean 2020-07-05
82344699 2020-07-05
85423468 2020-06-26
ggkuroky 2020-06-17
89711338 2020-06-14
80437700 2020-06-02
85394591 2020-05-31
80437700 2020-05-15
85394591 2020-05-15
80324291 2020-05-11
80437700 2020-05-11
85394591 2020-05-10
85423468 2020-05-05
87133050 2020-04-30
85497718 2020-04-29