1. 程式人生 > >路由的跳轉方式

路由的跳轉方式

最常用的是router-link to::<router-link to="網址路徑">或者<router-link :to=屬性>

利用事件來跳轉

<button @click="goToMenu" class="btn btn-success">let is go</button>
</div>
</template>

<script>
export default{
  methods:{
    goToMenu(){
      //跳轉到上一次流浪的頁面
      //this.$router.go(-1)
      //指定跳轉的地址
      //this.$router.replace('/menu')
      //指定跳轉的路由的名字下
      //this.$router.replace({name:'menuLink'})
      //最常用的用push來跳轉
      //this.$router.push('/menu')
      this.$router.push({name:'menuLink'})
    }