溫馨提示×

溫馨提示×

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

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

如何用Vue實現(xiàn)點擊導(dǎo)航高亮效果

發(fā)布時間:2023-04-13 10:16:15 來源:億速云 閱讀:191 作者:iii 欄目:web開發(fā)

本篇內(nèi)容介紹了“如何用Vue實現(xiàn)點擊導(dǎo)航高亮效果”的有關(guān)知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

一、項目環(huán)境準(zhǔn)備

在開始前,需要先準(zhǔn)備一個使用Vue的項目??梢允褂肰ue CLI等工具來快速創(chuàng)建一個項目。我們需要在項目中安裝Vue和Vue Router兩個庫。

//安裝 Vue
npm install vue
//安裝 Vue Router
npm install vue-router

二、實現(xiàn)點擊導(dǎo)航高亮

  1. 設(shè)置路由

首先,需要設(shè)置路由來導(dǎo)航。這里我們創(chuàng)建三個路由,分別表示首頁、新聞頁和博客頁。

//導(dǎo)入Vue和Vue Router
import Vue from 'vue'
import Router from 'vue-router'

//導(dǎo)入組件
import Home from '@/components/Home'
import News from '@/components/News'
import Blog from '@/components/Blog'

//使用Vue Router
Vue.use(Router)

export default new Router({
  routes: [
    {
      path: '/',
      name: 'Home',
      component: Home
    },
    {
      path: '/news',
      name: 'News',
      component: News
    },
    {
      path: '/blog',
      name: 'Blog',
      component: Blog
    }
  ]
})

  1. 創(chuàng)建導(dǎo)航組件

接下來,創(chuàng)建一個導(dǎo)航組件,在組件中設(shè)置需要跳轉(zhuǎn)的路由鏈接。這里使用<router-link>標(biāo)簽來實現(xiàn)路由跳轉(zhuǎn),同時也是后面實現(xiàn)高亮效果的關(guān)鍵。

<template>
  <div>
    <router-link to="/" tag="span" v-bind:class="{ active: isActive('/')}">首頁 </router-link>
    <router-link to="/news" tag="span" v-bind:class="{ active: isActive('/news')}">新聞 </router-link>
    <router-link to="/blog" tag="span" v-bind:class="{ active: isActive('/blog')}">博客 </router-link>
  </div>
</template>

<script>
export default {
  methods: {
    isActive (path) {
      // 判斷當(dāng)前路由是否激活,如果是則添加類名,否則不添加
      return this.$route.path === path
    }
  }
}
</script>

<style>
 .active {
    color: red;
  }
</style>

在組件中定義了一個isActive方法,該方法會判斷當(dāng)前路由是否激活。如果當(dāng)前路由是該導(dǎo)航所對應(yīng)的路由,則添加一個active類名;否則,不添加類名。

  1. 添加導(dǎo)航組件

把導(dǎo)航組件添加到頁頭部分。這里使用Bootstrap來簡單設(shè)計頁面。

<template>
  <div class="container">
    <nav class="navbar navbar-default">
      <div class="container-fluid">
        <div class="navbar-header">
          <router-link to="/" class="navbar-brand">Vue Router</router-link>
        </div>
        <div>
          <ul class="nav navbar-nav">
            <Nav></Nav>
          </ul>
        </div>
      </div>
    </nav>
    <router-view></router-view>
  </div>
</template>

<script>
import Nav from './Nav'
export default {
  name: 'app',
  components: {
      Nav
  }
}
</script>

完整代碼如下:

<template>
  <div class="container">
    <nav class="navbar navbar-default">
      <div class="container-fluid">
        <div class="navbar-header">
          <router-link to="/" class="navbar-brand">Vue Router</router-link>
        </div>
        <div>
          <ul class="nav navbar-nav">
            <Nav></Nav>
          </ul>
        </div>
      </div>
    </nav>
    <router-view></router-view>
  </div>
</template>

<script>
import Nav from './Nav'
export default {
  name: 'app',
  components: {
      Nav
  }
}
</script>

三、效果展示

完成以上步驟后,我們就可以通過點擊導(dǎo)航來進行路由跳轉(zhuǎn),同時也會實現(xiàn)點擊導(dǎo)航高亮的效果。

“如何用Vue實現(xiàn)點擊導(dǎo)航高亮效果”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實用文章!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

vue
AI