我们接着上一节的 Vue3.x 生命周期(三) 的说明,我们这一节讲解了项目中路由的配置与导航栏、侧边栏的关系。

一、路由配置

vue项目中路由配置有一个固有文件夹,可以配置路由,这样的优点使项目更加清晰明了。

如图: 

路由文件 index.js  的内容,这里原有是Hash路由配置,就是我们平常看到的路由有  “#” ,这里我们修改为原始路由。这里只需引入 createWebHistory  , 然后再路由对象router中修改为 createWebHistory() , 如框图所示。 

 index.js 完整文件

import { createRouter, createWebHashHistory, createWebHistory } from 'vue-router'
import HomeView from '../views/HomeView.vue'


const routes = [
  {
    path: '/',
    name: 'home',
    component: HomeView
  },
  {
    path: '/about',
    name: 'about',
    // route level code-splitting
    // this generates a separate chunk (about.[hash].js) for this route
    // which is lazy-loaded when the route is visited.
    component: () => import(/* webpackChunkName: "about" */ '../views/AboutView.vue')
  }
]

const router = createRouter({
  history: createWebHistory(),
  routes
})

路由中输入:http://127.0.0.1:8080/about  效果如下:

 

二、导航栏与侧边栏

我们先建立主页面和子页面,主页面:LayOut/LayOut.vue   子页面:pages/rolesList.vue  和  pages/usersList.vue  , 如图:

 LayOut.vue 代码:

<template>
    <div>
        <h1>我是导肮</h1>
            <router-link to="/index">角色列表</router-link><br>
            <router-link to="/user">用户列表</router-link>

        <h1>我是侧边栏</h1>
        <router-view></router-view>


        <!-- <hr> -->
        <!-- <router-view></router-view> -->

    </div>
    
</template>

<script>
    export default {
        name: "随便"
    }


</script>

<style>

</style>

rolesList.vue代码:

<template>
    <div>
        <h2>角色列表</h2>

    </div>
    
</template>

<script>
    export default {
        name: "rolesList"
    }


</script>

<style>

</style>

usersList.vue代码:

<template>
    <div>
        <h2>用户列表</h2>

        <!-- <router-view></router-view> -->
        <!-- <hr> -->
        <!-- <router-view></router-view> -->

    </div>
    
</template>

<script>
    export default {
        name: "usersList"
    }


</script>

<style>

</style>

这样我们就已经构建了三个页面的代码逻辑。下面就是构建路由逻辑。

2.1 主路由与子路由

路由还是在 router/index.js 中配置。下列写法我们用了懒加载的方式更好,这样可以在不是用到文件的时候不会加载路由代码,减少程序运行的反应时间。

 index.js 完整代码

import { createRouter, createWebHashHistory, createWebHistory } from 'vue-router'
import HomeView from '../views/HomeView.vue'


const routes = [
  {
    path: '/',
    name: 'home',
    component: HomeView
  },
  {
    path: '/about',
    name: 'about',
    // route level code-splitting
    // this generates a separate chunk (about.[hash].js) for this route
    // which is lazy-loaded when the route is visited.
    component: () => import(/* webpackChunkName: "about" */ '../views/AboutView.vue')
  },

  {
    path: '/layout',
    name: 'LayOut',
    component: () => import('../views/LayOut/LayOut.vue'),

    // 子路由
    children: [
      {
        path: "/index",
        name: "index",
        component: ()=>import("../views/pages/rolesList.vue")
      },
      {
        path: "/user",
        name: "user",
        component: ()=>import("../views/pages/usersList.vue")
      },

    ]

  },
  
]

const router = createRouter({
  history: createWebHistory(),
  routes
})

export default router

重点为路由文件中的下列截图部分:

 2.2 运行效果

直接输入http://127.0.0.1:8080/layout  ,可以看到效果,在LayOut.vue文件中的<router-view></router-view>其实就是引入子路由的文件内容。

点击:角色列表  效果如下: 

 

 点击:用户列表  效果如下: 

 

GitHub 加速计划 / vu / vue
207.54 K
33.66 K
下载
vuejs/vue: 是一个用于构建用户界面的 JavaScript 框架,具有简洁的语法和丰富的组件库,可以用于开发单页面应用程序和多页面应用程序。
最近提交(Master分支:2 个月前 )
73486cb5 * chore: fix link broken Signed-off-by: snoppy <michaleli@foxmail.com> * Update packages/template-compiler/README.md [skip ci] --------- Signed-off-by: snoppy <michaleli@foxmail.com> Co-authored-by: Eduardo San Martin Morote <posva@users.noreply.github.com> 4 个月前
e428d891 Updated Browser Compatibility reference. The previous currently returns HTTP 404. 5 个月前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐