1、首先需要按照Vue router支持

  1. npm install vue-router
    然后需要在项目中引入:
  1. import Vue from 'vue'
  2. import VueRouter from 'vue-router'
  3. Vue.use(VueRouter)

2、定义router的js文件

  1. import Vue from 'vue'
  2. import Router from 'vue-router'
  3. import User from '../pages/user'
  4. import Home from '../pages/public/home'
  5. import Profile from '../pages/user/profile'
  6. import Form from '../pages/form'
  7. import Detail from '../pages/form/form'
  8. import File from '../pages/form/file'
  9. import Files from '../pages/file'
  10.  
  11. Vue.use(Router)
  12.  
  13. export default new Router({
  14. routes: [
  15. { path: '/', component:Home,
  16. children:[
  17. { path: '/user', component:Profile},
  18. { path: '/profile', component: User},
  19. { path: '/form', component: Form},
  20. { path: '/detail', component: Detail},
  21. { path: '/profiles', component: Files},
  22. { path: '/file', component: File}
  23. ]
  24. },
  1. { path: '/login', component:Login},
    { path: '/404', component:Error}
  1. ]
    })

3、在main.js中引入router

  1. import router from './router'
  2.  
  3. new Vue({
  4. router,
  5. render: h => h(App),
  6. }).$mount('#app')

4、入口页面定义router-view

  1. <div id="app">
  2. <router-view></router-view>
  3. </div>

5、在path指向为“/”的页面中,定义页面的布局,例如:上(头部)-中(左道航-右内容)-下(底部)。

  1. <HeaderSection></HeaderSection>
  2. <div>
  3. <NavList class="nav"></NavList>
  4. <router-view class="router"></router-view>
  5. </div>
  6. <FooterSection></FooterSection>

6、左侧导航,用elementUI实现,有一个NavMenu导航菜单,做导航功能。

在这里提一下引入elementUI:

(1)安装

 npm i element-ui -S

(2)使用

  在main.js中加入下面的代码:

  import ElementUI from 'element-ui';

  import 'element-ui/lib/theme-chalk/index.css';

  Vue.use(ElementUI);

导航栏的代码如下:

  1. <el-menu class="sidebar-el-menu" :default-active="onRoutes" :collapse="collapse" background-color="#324157"
  2. text-color="#bfcbd9" active-text-color="#20a0ff" unique-opened router>
  3. <template v-for="item in items">
  4. <template v-if="item.subs">
  5. <el-submenu :index="item.index" :key="item.index">
  6. <template slot="title">
  7. <i :class="item.icon"></i><span slot="title">{{ item.title }}</span>
  8. </template>
  9. <template v-for="subItem in item.subs">
  10. <el-submenu v-if="subItem.subs" :index="subItem.index" :key="subItem.index">
  11. <template slot="title">{{ subItem.title }}</template>
  12. <el-menu-item v-for="(threeItem,i) in subItem.subs" :key="i" :index="threeItem.index">
  13. {{ threeItem.title }}
  14. </el-menu-item>
  15. </el-submenu>
  16. <el-menu-item v-else :index="subItem.index" :key="subItem.index">
  17. {{ subItem.title }}
  18. </el-menu-item>
  19. </template>
  20. </el-submenu>
  21. </template>
  22. <template v-else>
  23. <el-menu-item :index="item.index" :key="item.index">
  24. <i :class="item.icon"></i><span slot="title">{{ item.title }}</span>
  25. </el-menu-item>
  26. </template>
  27. </template>
    </el-menu>

定义左侧导航的显示和图标等内容,index为唯一标识,打开的是path路径,对应router中的path,就可以打开写好的相应的页面。

  1. items: [
  2. {
  3. icon: 'el-icon-share',
  4. index: 'user',
  5. title: '系统首页'
  6. },
  7. {
  8. icon: 'el-icon-time',
  9. index: 'profile',
  10. title: '基础表格'
  11. },
  12. {
  13. icon: 'el-icon-bell',
  14. index: '',
  15. title: '表单相关',
  16. subs: [
  17. {
  18. index: 'form',
  19. title: '基本表单'
  20. },
  21. {
  22. index: '3-2',
  23. title: '三级菜单',
  24. subs: [
  25. {
  26. index: 'detail',
  27. title: '富文本编辑器'
  28. },
  29. {
  30. index: 'file',
  31. title: 'markdown编辑器'
  32. },
  33. ]
  34. },
  35. {
  36. index: 'profiles',
  37. title: '文件上传'
  38. }
  39. ]
  40. },
  41. ]

7、如果涉及到登录页面和不需要路由的页面等,就需要在router的js文件中定义和“/”平级的其他path的页面,再判断进入页面是路由页面还是登录等页面。

vue路由--网站导航功能的更多相关文章

  1. Vue路由实现之通过URL中的hash(#号)来实现不同页面之间的切换(图表展示、案例分析、附源码详解)

    前言 本篇随笔主要写了Vue框架中路由的基本概念.路由对象属性.vue-router插件的基本使用效果展示.案例分析.原理图解.附源码地址获取. 作为自己对Vue路由进行页面跳转效果知识的总结与笔记. ...

  2. vue 路由里面的 hash 和 history

    对于 Vue 这类渐进式前端开发框架,为了构建 SPA(单页面应用),需要引入前端路由系统,这也就是 Vue-Router 存在的意义.前端路由的核心,就在于 —— 改变视图的同时不会向后端发出请求. ...

  3. Vue路由(vue-router)详细讲解指南

    中文文档:https://router.vuejs.org/zh/ Vue Router 是 Vue.js 官方的路由管理器.它和 Vue.js 的核心深度集成,让构建单页面应用变得易如反掌.路由实际 ...

  4. 「vue基础」一篇浅显易懂的 Vue 路由使用指南( Vue Router 上)

    大家好,今天的内容,我将和大家一起聊聊 Vue 路由相关的知识,如果你以前做过服务端相关的开发,那你一定会对程序的URL结构有所了解,我没记错的话也是路由映射的概念,需要进行配置. 其实前端这些框架的 ...

  5. Vue路由(vue-router)

    一.介绍 1.vue-router安装 官方文档:https://router.vuejs.org/zh/installation.html下载地址:https://unpkg.com/vue-rou ...

  6. Vue路由vue-router

    前面的话 在Web开发中,路由是指根据URL分配到对应的处理程序.对于大多数单页面应用,都推荐使用官方支持的vue-router.Vue-router通过管理URL,实现URL和组件的对应,以及通过U ...

  7. 攻克vue路由

    先下手 路由是个好功能,但是每次都感觉没法开始下手,愣愣的看半天官方文档,所以做个快速开始教程. 首先先搭好HTML文件结构: <!--link和view在一个父元素下--> <di ...

  8. Vue路由学习心得

    GoodBoy and GoodGirl~进来了就看完点个赞再离开,写了这么多也不容易的~ 一.介绍  1.概念:路由其实就是指向的意思,当我们点击home按钮时,页面中就要显示home的内容,点击l ...

  9. VUE路由新页面打开的方法总结

    平常做单页面的场景比较多,所以大部分的业务是在同一个页面进行跳转.要通过VUE路由使用新页面打开且传递参数,可以采用以下两个方法: 1.router-link的target <router-li ...

随机推荐

  1. zookeeper 分布式锁原理

    zookeeper 分布式锁原理: 1 大家也许都很熟悉了多个线程或者多个进程间的共享锁的实现方式了,但是在分布式场景中我们会面临多个Server之间的锁的问题,实现的复杂度比较高.利用基于googl ...

  2. 初识Haskell 五:自定义数据类型和类型类

    对Discrete Mathematics Using a Computer的第一章Introduction to Haskell进行总结.环境Windows 自定义数据类型 data type de ...

  3. C# WinForm 技巧十: winfrom 全屏自适应屏幕分辨率

    Rectangle rect = new Rectangle(); rect = Screen.GetWorkingArea(this); this.Width = rect.Width;//屏幕宽 ...

  4. 【动态规划】 EditDistance

    思路参考: https://www.cnblogs.com/littlepanpc/p/7895810.html 代码参考:https://leetcode.com/problems/edit-dis ...

  5. Angular 基本内置服务和筛选器

    AngularJS中的内置服务(共30多个): $http 发送http请求,主要用于进行异步数据请求的功能实现,这个服务主要封装了XMLHttpRequest对象和JSONP数据访问模式来完成远程请 ...

  6. 自己常用易忘的CSS样式

    鼠标小手:   cursor:pointer 点击边框消失:outline:none; ul li下划线以及点消失: list-style-type:none; span 超出内容为...:overf ...

  7. 使用C++进行WMI查询的简单封装

    封装WMI查询的简单类CWMIUtil 头文件WMIUtil.h #pragma once #include <Wbemidl.h> class CWMIUtil { public: CW ...

  8. [Cordova inAppBrowser 在App内打开浏览器]

    方案1: 使用Cordova插件 cordova-plugin-inappbrowser 1.  添加插件 cordova plugin add cordova-plugin-inappbrowser ...

  9. 简述layui前端ui框架的使用

    官方网址:https://www.layui.com/demo/upload.html

  10. zookeeper集群的简单搭建

    zookeeper简单介绍 zookeeper是一个为分布式应用提供一致性服务的软件,它是开源的Hadoop项目的一个子项目,并根据google发表的一篇论文来实现的.zookeeper为分布式系统提 ...