在 Vue.js 中使用嵌套路由

做者:Parthiv Mohan

翻譯:瘋狂的技術宅javascript

原文:https://alligator.io/vuejs/ne...css

未經容許嚴禁轉載html

隨着 Vue.js 單頁應用(SPA)變得至關複雜,你開始須要 Vue 路由以及嵌套路由。嵌套路由容許更復雜的用戶界面以及相互嵌套的組件。讓咱們建立一個相對簡單的用例,來展現 Vue Router 中嵌套路由的實用性。前端

用 Vue CLI 進行設置

若是還沒有安裝,請運行如下命令全局安裝 Vue CLI:vue

$ npm install -g @vue/cli

或者java

$ yarn global add @vue/cli

如今你能從命令行運行 vue 命令了。讓咱們建立一個名爲 alligator-nest 的 Vue 應用:程序員

$ vue create alligator-nest

在提示符下選擇默認預設(按 Enter 鍵)。以後,運行如下命令:web

$ npm install vue-router

而後,在你選擇的編輯器中打開 alligator-nest 目錄。面試

基本代碼

如下 CSS 將幫助咱們爲 UI 定位元素。將其做爲樣式表文件添加到 public/ 文件夾中,並在 public/index.html 中引用它。爲此,咱們將使用 CSS gridvue-router

grid.css

.row1 {
  grid-row-start: 1;
  grid-row-end: 2;
}

.row12 {
  grid-row-start: 1;
  grid-row-end: 3;
}

.row123 {
  grid-row-start: 1;
  grid-row-end: 4;
}

.row2 {
  grid-row-start: 2;
  grid-row-end: 3;
}

.row23 {
  grid-row-start: 2;
  grid-row-end: 4;
}

.row3 {
  grid-row-start: 3;
  grid-row-end: 4;
}

.col1 {
  grid-column-start: 1;
  grid-column-end: 2;
}

.col12 {
  grid-column-start: 1;
  grid-column-end: 3;
}

.col123 {
  grid-column-start: 1;
  grid-column-end: 4;
}

.col1234 {
  grid-column-start: 1;
  grid-column-end: 5;
}

.col2 {
  grid-column-start: 2;
  grid-column-end: 3;
}

.col23 {
  grid-column-start: 2;
  grid-column-end: 4;
}

.col234 {
  grid-column-start: 2;
  grid-column-end: 5;
}

.col3 {
  grid-column-start: 3;
  grid-column-end: 4;
}

.col34 {
  grid-column-start: 3;
  grid-column-end: 5;
}

.col4 {
  grid-column-start: 4;
  grid-column-end: 5;
}

接下來,讓咱們對 vue-cli 添加的默認文件進行一些更改。

src/components 文件夾中刪除 HelloWorld.vue,並從 src/App.vue 中刪除全部與其相關的東西。對 App.vue 中的 HTML 標記和 CSS 樣式進行如下修改。

<template>
  <div id="app">
    <h1 class="row1 col12">Alligator Nest</h1>
    <a class="row1 col3">Travels</a>
    <a class="row1 col4">About</a>
    <div class="row2 col234"></div>
  </div>
</template>
html, body {
  height: 100vh;
  width: 100vw;
  padding: 0;
  margin: 0;
}

#app {
  font-family: Avenir, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #2c3e50;
  padding: 2%;
  height: 100%;
  display: grid;
  grid-template-rows: 20% 80%;
  grid-template-columns: 25% 25% 25% 25%;
}

若是你在項目的根目錄中運行 npm run serve,則能夠將鼠標懸停在瀏覽器中的 localhost:8080 上,並查看框架佈局。那些 display:grid 屬性頗有用!如今咱們能夠開始建立路由了。

輸入 Vue 路由

/components 文件夾中建立一個名爲 AboutPage.vue 的組件。它看起來像這樣:

<template>
  <div>
    <h2>About</h2>
    <p>Alligators were around during the time of the dinosaurs.</p>
  </div>
</template>

<script>
  export default {
    name: 'AboutPage',
  }
</script>

<style scoped>
  
</style>

如今咱們的 main.js 文件須要 /about 路由。它看起來像這樣。

import VueRouter from 'vue-router';
import Vue from 'vue';
import App from './App.vue';

Vue.config.productionTip = false;

import VueRouter from 'vue-router';
Vue.use(VueRouter);

import AboutPage from './components/AboutPage.vue';

const routes = [
  { path: '/about', component: AboutPage },
]

const router = new VueRouter({
  routes
})

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

最後,讓咱們回到 App.vue,並將 「About」 的錨標記更改成屬性爲 to="/about"<router-link> 標籤。而後,將第二個 div 更改成 <router-view> 標籤。確保保持網格定位類屬性不變。

如今,咱們有了一個功能齊全的站點框架,併爲 「About」 頁面處理了路由。

咱們在此重點介紹路由功能,所以不會在樣式上話費太多時間。儘管如此,咱們也要讓Travels 頁面看起來更精緻一些。


首先,建立一個 TravelPage,方法與建立 AboutPage 相同。在 main.js 中引用它。

還須要建立如下兩個組件,這些組件最終將嵌套在 TravelPage.vue 中:

TravelAmericaPage.vue

<template>
  <div>
    <p>Alligators can be found in the American states of Louisiana and Florida.</p>
  </div>
</template>

<script>
  export default {
    name: 'TravelAmericaPage'
  }
</script>

<style scoped>
</style>

TravelChinaPage.vue

<template>
  <div>
    <p>Alligators can be found in China's Yangtze River Valley.</p>
  </div>
</template>

<script>
  export default {
    name: 'TravelChinaPage'
  }
</script>

<style scoped>

</style>

配置嵌套路由

如今,讓咱們同時更新 main.jsTravelPage.vue,以使用 children 來引用這些嵌套路由。必須將 main.js 更新爲對 routes 常量具備如下定義:

const routes = [
  {
    path: '/travel', component: TravelPage,
    children: [
      { path: '/travel/america', component: TravelAmericaPage },
      { path: '/travel/china', component: TravelChinaPage}
    ]
  },
  {
    path: '/about', component: AboutPage
  }
];

請注意,子級的嵌套能夠無限繼續下去。

而且 TravelPage.vue 能夠經過如下方式編寫:

TravelPage.vue

<template>
  <div id="travel">
    <h2 class="row1">Travels</h2>
    <div class="flex-container row2">
      <router-link to="/travel/america">America</router-link>
      <router-link to="/travel/china">China</router-link>
    </div>
    <router-view class="row3"></router-view>
  </div>
</template>

<script>
  export default {
    name: 'TravelPage'
  }
</script>

<style scoped>
div {
  text-align: center;
}

#travel {
  display: grid;
  grid-template-rows: 20% 40% 40%;
}

.flex-container {
  display: flex;
  justify-content: space-around;
}
</style>

檢出 localhost:8080,你將看到 Travels 頁面中包含 2 個子頁面!當你單擊任一連接時,咱們的 URL 也會相應更新。

總結

但願本教程對你瞭解如何使用嵌套路由有幫助!

關於該主題的其餘注意事項——咱們可使用動態段定義路由,例如 path:'/location/:id'。而後在這些路由的視圖上,能夠將該 id 引用爲 this.$route.params。當你但願在網站和應用上顯示更多特定類型的數據(用戶、圖片等)時,此功能很是有用。


本文首發微信公衆號:前端先鋒

歡迎掃描二維碼關注公衆號,天天都給你推送新鮮的前端技術文章

歡迎掃描二維碼關注公衆號,天天都給你推送新鮮的前端技術文章

歡迎繼續閱讀本專欄其它高贊文章:


相關文章
相關標籤/搜索