項目中,須要點擊連接後再新窗口打開頁面,你們知道vue是單頁面應用開發框架,那麼也不是不能夠實現這個功能vue
很簡單,詳情看下面編程
1.<router-link>標籤實現新窗口打開框架
<router-link target="_blank" :to="{path:'/home',query:{id:'1'}}">新頁面打開home頁</router-link>
2.編程式導航:this
print_schedule() {
let id = this.id; const { href } = this.$router.resolve({ name: `print_schedule`, params: { id: id } }); window.open(href, "_blank"); },