vue3笔记1

4.4.【路由器工作模式】

  1. history模式

    优点:URL更加美观,不带有#,更接近传统的网站URL

    缺点:后期项目上线,需要服务端配合处理路径问题,否则刷新会有404错误。

    const router = createRouter({
    history:createWebHistory(), //history模式
    /******/
    })
  2. hash模式

    优点:兼容性更好,因为不需要服务器端处理路径。

    缺点:URL带有#不太美观,且在SEO优化方面相对较差。

    const router = createRouter({
    history:createWebHashHistory(), //hash模式
    /******/
    })

4.5. 【to的两种写法】

<!-- 第一种:to的字符串写法 -->
<router-link active-class="active" to="/home">主页</router-link>

<!-- 第二种:to的对象写法 -->
<router-link active-class="active" :to="{path:'/home'}">Home</router-link>

4.6. 【命名路由】

作用:可以简化路由跳转及传参(后面就讲)。

给路由规则命名:

routes:[
{
   name:'zhuye',
   path:'/home',
   component:Home
},
{
   name:'xinwen',
   path:'/news',
   component:News,
},
{
   name:'guanyu',
   path:'/about',
   component:About
}
]

 

posted @ 2024-02-27 13:10  石铁生  阅读(4)  评论(0编辑  收藏  举报