版本問題
在使用2.0以上的vue版本時准脂,router的版本也必須為2.0以上
先來看看官方的router 2.0基礎(chǔ)示例
HTML
<script src="https://unpkg.com/vue/dist/vue.js"></script>
<script src="https://unpkg.com/vue-router/dist/vue-router.js"></script>
<div id="app">
<h1>Hello App!</h1>
<p>
<!-- 使用 router-link 組件來導(dǎo)航. -->
<!-- 通過傳入 `to` 屬性指定鏈接. -->
<!-- <router-link> 默認(rèn)會被渲染成一個 `<a>` 標(biāo)簽 -->
<router-link to="/foo">Go to Foo</router-link>
<router-link to="/bar">Go to Bar</router-link>
</p> <!-- 路由出口 -->
<!-- 路由匹配到的組件將渲染在這里 -->
<router-view></router-view>
</div>
在HTML中依賴兩個雙標(biāo)簽烈涮,<router-link>
和<router-view>
<router-link>
相當(dāng)于一個錨鏈接 有個行內(nèi)to屬性担巩,在點(diǎn)擊的時候會在<router-view>
中局部刷新 to屬性路徑中的模塊
Javascript
// 0. 如果使用模塊化機(jī)制編程,導(dǎo)入Vue和VueRouter,要調(diào)用 Vue.use(VueRouter)
// 1. 定義(路由)組件凹嘲。
// 可以從其他文件 import 進(jìn)來
const Foo = { template: '<div>foo</div>' }
const Bar = { template: '<div>bar</div>' }
// 2. 定義路由
// 每個路由應(yīng)該映射一個組件。 其中"component" 可以是
// 通過 Vue.extend() 創(chuàng)建的組件構(gòu)造器悔叽,
// 或者莱衩,只是一個組件配置對象。
// 我們晚點(diǎn)再討論嵌套路由娇澎。
const routes = [
{ path: '/foo', component: Foo },
{ path: '/bar', component: Bar }
]
// 3. 創(chuàng)建 router 實例笨蚁,然后傳 `routes` 配置
// 你還可以傳別的配置參數(shù), 不過先這么簡單著吧。
const router = new VueRouter({
routes // (縮寫)相當(dāng)于 routes: routes
})
// 4. 創(chuàng)建和掛載根實例趟庄。
// 記得要通過 router 配置參數(shù)注入路由括细,
// 從而讓整個應(yīng)用都有路由功能
const app = new Vue({
router
}).$mount('#app')
// 現(xiàn)在,應(yīng)用已經(jīng)啟動了戚啥!
- 首先要定義路由依賴的模塊奋单,該模塊為一個
template
,如上段代碼中的const Foo={template:'<div>foo</div>'}
, 如果依賴模塊是外部的vue文件的話就要用import from
來引入了猫十。 - 然后需要定義路由配置對象览濒,多個路由對象存放在數(shù)組變量當(dāng)中。對象中必須有路徑
path
和對應(yīng)的組件component
- 還需要用
new
實例化一個vueRouter
對象拖云,參數(shù){toutes&linkActiveClass......}
- 在new vue的時候講
vueRouter
實例傳入就完成了路由的啟動匾七。 - 實例化出來的對象可以通過router.push(‘path’)來控制在首次進(jìn)入頁面時的<router-view>內(nèi)容