vue點擊按鈕跳轉頁面


按鈕

<button @click="register">登錄</button>

實現跳轉  在methods里面寫入一下代碼

   register () {
      //跳轉到上一次瀏覽的頁面
      this.$router.go(-1)

      //指定跳轉的地址
      this.$router.replace('/將要跳轉的路由名稱')

      //指定跳轉的路由的名字下
      this.$router.replace({name:'指定路由名稱'})

      //通過push進行跳轉
      this.$router.push('/將要跳轉的路由名稱')
    }

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM