欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

vue路由--网站导航功能

程序员文章站 2022-10-05 09:30:56
1、首先需要按照Vue router支持 2、定义router的js文件 3、在main.js中引入router 4、入口页面定义router-view 5、在path指向为“/”的页面中,定义页面的布局,例如:上(头部)-中(左道航-右内容)-下(底部)。 6、左侧导航,用elementUI实现, ......

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

 npm install vue-router
然后需要在项目中引入:
import vue from 'vue'
import vuerouter from 'vue-router'
vue.use(vuerouter)

2、定义router的js文件

import vue from 'vue'
import router from 'vue-router'
import user from '../pages/user'
import home from '../pages/public/home'
import profile from '../pages/user/profile'
import form from '../pages/form'
import detail from '../pages/form/form'
import file from '../pages/form/file'
import files from '../pages/file'

vue.use(router)

export default new router({
    routes: [
        { path: '/', component:home,
            children:[
                { path: '/user', component:profile},
                { path: '/profile', component: user},
                { path: '/form', component: form},
                { path: '/detail', component: detail},
                { path: '/profiles', component: files},
                { path: '/file', component: file}
            ]
        },
       { path: '/login', component:login},
{ path: '/404', component:error}
   ] 
})

3、在main.js中引入router

import router from './router'

new vue({
  router,
  render: h => h(app),
}).$mount('#app')

4、入口页面定义router-view

<div id="app">
    <router-view></router-view>
  </div>

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

<headersection></headersection>
   <div>
      <navlist class="nav"></navlist>
      <router-view  class="router"></router-view>
   </div>
<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);

导航栏的代码如下:

<el-menu class="sidebar-el-menu" :default-active="onroutes" :collapse="collapse" background-color="#324157"
                 text-color="#bfcbd9" active-text-color="#20a0ff" unique-opened router>
    <template v-for="item in items">
       <template v-if="item.subs">
          <el-submenu :index="item.index" :key="item.index">
             <template slot="title">
               <i :class="item.icon"></i><span slot="title">{{ item.title }}</span>
             </template>
             <template v-for="subitem in item.subs">
                <el-submenu v-if="subitem.subs" :index="subitem.index" :key="subitem.index">
                   <template slot="title">{{ subitem.title }}</template>
                   <el-menu-item v-for="(threeitem,i) in subitem.subs" :key="i" :index="threeitem.index">
                     {{ threeitem.title }}
                   </el-menu-item>
                </el-submenu>
                <el-menu-item v-else :index="subitem.index" :key="subitem.index">
                   {{ subitem.title }}
                </el-menu-item>
             </template>
         </el-submenu>
      </template>
      <template v-else>
          <el-menu-item :index="item.index" :key="item.index">
              <i :class="item.icon"></i><span slot="title">{{ item.title }}</span>
          </el-menu-item>
      </template>
  </template>
</el-menu>

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

           items: [
                    {
                        icon: 'el-icon-share',
                        index: 'user',
                        title: '系统首页'
                    },
                    {
                        icon: 'el-icon-time',
                        index: 'profile',
                        title: '基础表格'
                    },
                    {
                        icon: 'el-icon-bell',
                        index: '3',
                        title: '表单相关',
                        subs: [
                            {
                                index: 'form',
                                title: '基本表单'
                            },
                            {
                                index: '3-2',
                                title: '三级菜单',
                                subs: [
                                    {
                                        index: 'detail',
                                        title: '富文本编辑器'
                                    },
                                    {
                                        index: 'file',
                                        title: 'markdown编辑器'
                                    },
                                ]
                            },
                            {
                                index: 'profiles',
                                title: '文件上传'
                            }
                        ]
                    },
                ]

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