博客列表 >vue二级路由-路由守卫-组合api

vue二级路由-路由守卫-组合api

kiraseo_wwwkiraercom
kiraseo_wwwkiraercom原创
2022年09月06日 15:40:00404浏览

vue 二级路由

效果

在二级路由利用路由守卫监听效果

组合api

代码如下

  1. <template>
  2. <nav>
  3. <router-link to="/">首页</router-link> |
  4. <router-link to="/about">关于我们</router-link>
  5. </nav>
  6. <router-view />
  7. <div>{{data.num}}</div>
  8. <button @click="fun">点赞</button>
  9. </template>
  10. <script setup>
  11. import { reactive } from "vue";
  12. const data = reactive({
  13. num : 100
  14. })
  15. const fun = () =>{
  16. data.num++;
  17. }
  18. </script>
  19. <style lang="scss">
  20. #app {
  21. font-family: Avenir, Helvetica, Arial, sans-serif;
  22. -webkit-font-smoothing: antialiased;
  23. -moz-osx-font-smoothing: grayscale;
  24. text-align: center;
  25. color: #2c3e50;
  26. }
  27. nav {
  28. padding: 30px;
  29. a {
  30. font-weight: bold;
  31. color: #2c3e50;
  32. &.router-link-exact-active {
  33. color: #42b983;
  34. }
  35. }
  36. }
  37. </style>

效果

声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议