国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

手把手教你學Vue-3(路由)

laznrbfe / 862人閱讀

摘要:記得要通過配置參數注入路由,從而讓整個應用都有路由功能動態路由一個路徑參數使用冒號標記。當匹配到一個路由時,參數值會被設置到,可以在每個組件內使用。

1.路由的作用

1.當我們有多個頁面的時候 ,我們需要使用路由,將組件(components)映射到路由(routes),然后告訴 vue-router 在哪里渲染它們。

</>復制代碼

  1. 簡單的路由

</>復制代碼

  1. const routes = [
  2. { path: "/foo", component: Foo },
  3. { path: "/bar", component: Bar }
  4. ]
  5. // 3. 創建 router 實例,然后傳 `routes` 配置
  6. // 你還可以傳別的配置參數, 不過先這么簡單著吧。
  7. const router = new VueRouter({
  8. routes // (縮寫)相當于 routes: routes
  9. })
  10. // 4. 創建和掛載根實例。
  11. // 記得要通過 router 配置參數注入路由,
  12. // 從而讓整個應用都有路由功能
  13. const app = new Vue({
  14. router
  15. }).$mount("#app")

</>復制代碼

  1. 動態路由
    一個『路徑參數』使用冒號 : 標記。當匹配到一個路由時,參數值會被設置到 this.$route.params,可以在每個組件內使用。于是,我們可以更新 User 的模板,輸出當前用戶的 ID:

</>復制代碼

  1. const User = {
  2. template: "
    User
    "
  3. }
  4. const router = new VueRouter({
  5. routes: [
  6. // 動態路徑參數 以冒號開頭
  7. { path: "/user/:id", component: User }
  8. ]
  9. })

</>復制代碼

  1. 潛套路由

</>復制代碼

  1. const router = new VueRouter({
  2. routes: [
  3. { path: "/user/:id", component: User,
  4. children: [
  5. {
  6. // 當 /user/:id/profile 匹配成功,
  7. // UserProfile 會被渲染在 User 的
  8. path: "profile",
  9. component: UserProfile
  10. },
  11. {
  12. // 當 /user/:id/posts 匹配成功
  13. // UserPosts 會被渲染在 User 的
  14. path: "posts",
  15. component: UserPosts
  16. }
  17. ]
  18. }
  19. ]
  20. })

子節點的router 會渲染到父節點User router-view 里面

router.push、 router.replace 和 router.go
想要導航到不同的 URL,則使用 router.push 方法。這個方法會向 history 棧添加一個新的記錄,所以,當用戶點擊瀏覽器后退按鈕時,則回到之前的 URL。

</>復制代碼

  1. router-link :to="{ name: "user", params: { userId: 123 }}">User
  2. router.push({ name: "user", params: { userId: 123 }})
2.命名視圖

一個 layout 布局展示

</>復制代碼

  1. const router = new VueRouter({
  2. routes: [
  3. {
  4. path: "/",
  5. components: {
  6. default: Foo,
  7. a: Bar,
  8. b: Baz
  9. }
  10. }
  11. ]
  12. })

命名視圖中我們需要注意的地方,在props路由傳值上面 對于包含命名視圖的路由,你必須分別為每個命名視圖添加 props 選項

</>復制代碼

  1. const User = {
  2. props: ["id"],
  3. template: "
    User {{ id }}
    "
  4. }
  5. const router = new VueRouter({
  6. routes: [
  7. { path: "/user/:id", component: User, props: true },
  8. // 對于包含命名視圖的路由,你必須分別為每個命名視圖添加 `props` 選項:
  9. {
  10. path: "/user/:id",
  11. components: { default: User, sidebar: Sidebar },
  12. props: { default: true, sidebar: false }
  13. }
  14. ]
  15. })
3.深入理解路由

</>復制代碼

  1. 路由的配置
  2. declare type RouteConfig = {
  3. path: string;
  4. component?: Component;
  5. name?: string; // 命名路由
  6. components?: { [name: string]: Component }; // 命名視圖組件
  7. redirect?: string | Location | Function;
  8. props?: boolean | string | Function;
  9. alias?: string | Array;
  10. children?: Array; // 嵌套路由
  11. beforeEnter?: (to: Route, from: Route, next: Function) => void;
  12. meta?: any;
  13. // 2.6.0+
  14. caseSensitive?: boolean; // 匹配規則是否大小寫敏感?(默認值:false)
  15. pathToRegexpOptions?: Object; // 編譯正則的選項
  16. }

后面實際應用中,在補充一下文檔----目前都是看官方文檔

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://m.specialneedsforspecialkids.com/yun/93795.html

相關文章

  • 把手你學Vue-3(路由)

    摘要:記得要通過配置參數注入路由,從而讓整個應用都有路由功能動態路由一個路徑參數使用冒號標記。當匹配到一個路由時,參數值會被設置到,可以在每個組件內使用。 1.路由的作用 1.當我們有多個頁面的時候 ,我們需要使用路由,將組件(components)映射到路由(routes),然后告訴 vue-router 在哪里渲染它們。 簡單的路由 const routes = [ { path: ...

    SolomonXie 評論0 收藏0
  • 把手你學Vue-3(路由)

    摘要:記得要通過配置參數注入路由,從而讓整個應用都有路由功能動態路由一個路徑參數使用冒號標記。當匹配到一個路由時,參數值會被設置到,可以在每個組件內使用。 1.路由的作用 1.當我們有多個頁面的時候 ,我們需要使用路由,將組件(components)映射到路由(routes),然后告訴 vue-router 在哪里渲染它們。 簡單的路由 const routes = [ { path: ...

    Prasanta 評論0 收藏0
  • 把手你學Dapr

    摘要:配置配置使用概率抽樣。采樣率定義了對跟蹤跨度進行采樣的概率,其值可以介于和含之間。例如,以下配置對象將采樣率更改為即每個跨度都被采樣,并使用協議將跟蹤發送到位于的服務器文件路徑注將采樣率更改為會完全禁用跟蹤。目錄手把手教你學Dapr - 1. .Net開發者的大時代手把手教你學Dapr - 2. 必須知道的概念手把手教你學Dapr - 3. 使用Dapr運行第一個.Net程序手把手教你學Da...

    qqlcbb 評論0 收藏0
  • 把手你學Vue-2(組件開發)

    摘要:組件聲明組件分為全局的和局部的。父組件通過給子組件下發數據,子組件通過事件給父組件發送消息。以下實例中子組件已經和它外部完全解耦了。 1.vue 組件-聲明 組件分為全局的和局部的。 全局聲明 Vue.component(tagName, options) ** 引用組件 // 注冊 Vue.comp...

    lansheng228 評論0 收藏0
  • 把手你學Vue-2(組件開發)

    摘要:組件聲明組件分為全局的和局部的。父組件通過給子組件下發數據,子組件通過事件給父組件發送消息。以下實例中子組件已經和它外部完全解耦了。 1.vue 組件-聲明 組件分為全局的和局部的。 全局聲明 Vue.component(tagName, options) ** 引用組件 // 注冊 Vue.comp...

    Null 評論0 收藏0

發表評論

0條評論

最新活動
閱讀需要支付1元查看
<