91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么使用vue路由實現網站導航功能

發布時間:2022-10-27 11:13:09 來源:億速云 閱讀:285 作者:iii 欄目:開發技術

本文小編為大家詳細介紹“怎么使用vue路由實現網站導航功能”,內容詳細,步驟清晰,細節處理妥當,希望這篇“怎么使用vue路由實現網站導航功能”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。

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的頁面,再判斷進入頁面是路由頁面還是登錄等頁面。

為什么要使用Vue

Vue是一款友好的、多用途且高性能的JavaScript框架,使用vue可以創建可維護性和可測試性更強的代碼庫,Vue允許可以將一個網頁分割成可復用的組件,每個組件都包含屬于自己的HTML、CSS、JavaScript,以用來渲染網頁中相應的地方,所以越來越多的前端開發者使用vue。

讀到這里,這篇“怎么使用vue路由實現網站導航功能”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

vue
AI

财经| 梅河口市| 敖汉旗| 西畴县| 邯郸县| 屏山县| 柞水县| 揭东县| 米泉市| 濮阳市| 潞城市| 吉隆县| 泾源县| 定襄县| 梅州市| 临泉县| 徐水县| 阿勒泰市| 普兰店市| 宜兰市| 滦平县| 金沙县| 宁武县| 古丈县| 内丘县| 盐亭县| 海林市| 吉林省| 四会市| 道真| 林州市| 崇礼县| 兰溪市| 团风县| 大埔县| 舟山市| 海安县| 当涂县| 姚安县| 拜城县| 紫阳县|