My.vue 549 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <div class="my">
  3. 我的
  4. <!-- 编程式导航 -->
  5. <h3 @click="$router.push('/home')">笑笑</h3>
  6. <!-- <h3 @click="goToList">笑笑</h3> -->
  7. <button @click="$router.back()">后退</button>
  8. <button @click="$router.forward()">前进</button>
  9. <button @click="$router.go(-2)">按钮</button>
  10. </div>
  11. </template>
  12. <script>
  13. export default {
  14. methods:{
  15. goToList() {
  16. // $router 编程式导航
  17. this.$router.replace('/home')
  18. // this.$router.push('/home')
  19. }
  20. }
  21. }
  22. </script>
  23. <style>
  24. </style>