vue跳转页面

this.$router.push({ name: 'drugClaim', params: { currentTable: this.currentTable } })


如果参数项显示在连接里

this.$router.push({ name: 'drugClaim', query: { currentTable: this.currentTable } })

传参要用query

你可能感兴趣的:(vue跳转页面)