1. 程式人生 > >程式設計式路由導航

程式設計式路由導航

message.vue
<
template> <div> <ul> <li v-for="(message,index) in messages" :key="message.id"> <router-link :to="'/home/message/detail/'+message.id">{{message.title}}</router-link> <button @click="pushShow(message.id)">
push檢視</button> <button @click="replaceShow(message.id)">replace檢視</button> </li> </ul> <button @click="$router.back()">回退</button> <hr/> <router-view></router-view> </div> </template> <script> export
default{ data(){ return{ messages:[] } }, mounted(){ setTimeout(()=>{ const messages=[ { id:1, title:'message01' }, { id:2, title:
'message02' }, { id:3, title:'message03' }, ] this.messages = messages },300) }, methods:{ pushShow(id){ this.$router.push('/home/message/detail/'+id) }, replaceShow(id){ this.$router.replace('/home/message/detail/'+id) } } } </script> <style> </style>
相關API 1) this.$router.push(path): 相當於點選路由連結(可以返回到當前路由介面) 2) this.$router.replace(path): 用新路由替換當前路由(不可以返回到當前路由介面) 3) this.$router.back(): 請求(返回)上一個記錄路由 4) this.$router.go(-1): 請求(返回)上一個記錄路由 5) this.$router.go(1): 請求下一個記錄路由