Vue3 中使用 vue-router

Vue3 中使用 vue-router

  1. 首先安装 vue-router
cnpm i vue-router@next
  1. 在 router 文件夹下新建 index.js
import { createRouter, createWebHashHistory, createWebHistory } from "vue-router"

//1. 定义要使用到的路由组件  (一定要使用文件的全名,得包含文件后缀名)
import index from "../components/index.vue"
import ywcz from "../components/ywcz.vue"

//2. 路由配置
const routes = [
    //redirect 重定向也是通过 routes 配置来完成,下面就是从 / 重定向到 /index
    {
        path: "/",
        redirect: "/index",
    },
    { path: "/index", component: index },
    { path: "/ywcz", component: ywcz },
]

// 3. 创建路由实例
const router = createRouter({
    // (1)采用hash 模式
    history: createWebHashHistory(),
    // (2)采用 history 模式
    // history: createWebHistory(),
    routes, //使用上方定义的路由配置
})

// 4. 导出router
export default router
  1. 在 main.js 引入 router
import router from "./router" //匹配自己项目所对应的路径

createApp(App).use(router).mount("#app") //使用配置的路由
  1. 在 App.vue 使用

你可能感兴趣的:(Vue3 中使用 vue-router)