// 字符串
this.$router.push('/home/first')
// 对象
this.$router.push({ path: '/home/first' })
// 命名的路由
this.$router.push({ name: 'home', params: { userId: wise }})
//实例
<div @click="handleBackClick"></div>
methods: {
handleBackClick: function () {
this.$router.push('/home/first');
}
}