首頁 >web前端 >js教程 >vue中建立路由的幾個步驟

vue中建立路由的幾個步驟

一个新手
一个新手原創
2017-10-07 11:39:343310瀏覽

在vue中建立路由的幾個步驟;
第一步:定義需要路由的元件。
第二步:定義路由。
第三步:建立路由實例,傳入所定義路由的設定
第四步:建立掛載路由的根實例。
1、定義路由元件

const Foo : {template: &#39;<p> this is foo </p>
const Bar : {template: &#39;<p> this is bar </p>
.....

2、定義路由

const routes: [
{path: &#39;/foo&#39;, component: Foo},
{path: &#39;/bar&#39;, component: Bar}
]

3、建立路由實例,傳入定義路由的設定

const router = new VueRouter({
        routes: routes
})

4、建立掛載根實例

const app = new Vue({
router: router
}).$mount(&#39;#app&#39;)

HTML

<!--外部链接--><script src="https://unpkg.com/vue/dist/vue.js"></script><script src="https://unpkg.com/vue-router/dist/vue-router.js"></script><p id="app">
  <h1>Hello</h1>
  <p>
    <router-link to="/foo">Go to Foo</router-link>
    <router-link to="/bar">Go to Bar</router-link>
  </p>
  <router-view></router-view></p>

以上是vue中建立路由的幾個步驟的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn