<button @click = "func()">跳转</button> //js <script> export default{ methods:{ func (){ this.$router.push({path: '/order/b',query:{ price:69.00 }}); } } } </script>