vue.js 路由router跳转页面

我来纠错
// 字符串
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');
  }
}
发送
热门关键词:
命令
知识类型:
标题描述:
详细解答:

提交审核您编辑的知识会经过 前端大牛 人工审核。