最近闲着没事在网上看了一个实战项目,自己也对应着新版本的2.X版本的Vue.js的官方API仔细研究过,但是还是发现有一些API中没有提到的坑~。
关于vue-router的使用方法请查看官方文档。
首先我们肯定会看文档,router到底怎么用,我们就看下官方的例子
HTML
<div id="app">
<h1>Hello App!</h1>
<p>
<!-- 使用 router-link 组件来导航. -->
<!-- 通过传入 `to` 属性指定链接. -->
<!-- <router-link> 默认会被渲染成一个 `<a>` 标签 -->
<router-link to="/foo">Go to Foo</router-link>
<router-link to="/bar">Go to Bar</router-link>
</p>
<!-- 路由出口 -->
<!-- 路由匹配到的组件将渲染在这里 -->
<router-view></router-view>
</div>
JavaScript
// 0. 如果使用模块化机制编程,導入Vue和VueRouter,要调用 Vue.use(VueRouter)
// 1. 定义(路由)组件。
// 可以从其他文件 import 进来
const Foo = { template: '<div>foo</div>' }
const Bar = { template: '<div>bar</div>' }
// 2. 定义路由
// 每个路由应该映射一个组件。 其中"component" 可以是
// 通过 Vue.extend() 创建的组件构造器,
// 或者,只是一个组件配置对象。
// 我们晚点再讨论嵌套路由。
const routes = [
{ path: '/foo', component: Foo },
{ path: '/bar', component: Bar }
]
// 3. 创建 router 实例,然后传 `routes` 配置
// 你还可以传别的配置参数, 不过先这么简单着吧。
const router = new VueRouter({
routes // (缩写)相当于 routes: routes
})
// 4. 创建和挂载根实例。
// 记得要通过 router 配置参数注入路由,
// 从而让整个应用都有路由功能
const app = new Vue({
router
}).$mount('#app')
然后我们在实际项目中这么写时,可能会报错,我们来看代码:
下面的代码是通过vue-cli脚手架自动生成的
// The Vue build version to load with the `import` command
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
import Vue from 'vue'
import App from './App'
import VueRouter from 'vue-router'
import VueResource from 'vue-resource'
import Goods from 'components/goods/goods'
import Ratings from 'components/ratings/ratings'
import Seller from 'components/seller/seller'
import 'common/stylus/index.styl'
Vue.config.productionTip = false
Vue.use(VueRouter)
Vue.use(VueResource)
const routes = [
{
path: '/goods',
component: Goods
}, {
path: '/ratings',
component: Ratings
}, {
path: '/seller',
component: Seller
}
]
const router = new VueRouter({
linkActiveClass: 'active', routes // (缩写)相当于 routes: routes
})
router.push('/goods')
const app = new Vue({
router
}).$mount('#app')
我定义了一个路由routes,并且根据官网的例子使用,但是实际结果必然是报错
1、首先是eslint报错:http://eslint.org/docs/rules/no-unused-vars 'App' is defined but never used,意思就是说app被定义了但是没有使用,我们按照官网的例子暂时用不到App组件所以我们暂时将App注释掉。
2、其次,http://eslint.org/docs/rules/no-unused-vars 'app' is defined but never used,解决这个问题其实很简单只要我们使用注释“/ eslint-disable no-unused-vars /”禁用掉它这条规则就可以
/* eslint-disable no-unused-vars */
const app = new Vue({
router
}).$mount('#app')
这样处理之后,你会发现项目启动没有报错了,但是界面确实一片空白,这是因为实际上我们的路由并没有挂载到我们的组件上导致的。你需要做的就是如下改动:
/* eslint-disable no-new */
new Vue({
el: '#app',
router,
render: h => h(App)
})
之后项目就会正常运行了,其实这种写法和下面的结果一样
/* eslint-disable no-unused-vars */
const app = new Vue({
router,
template: '<App/>',
components: {
App
}}).$mount('#app')
写法一是传入了render函数,并将组件App传入,并以此渲染组件
写法二是普通的传入template,和components以此来渲染
官方推荐使用render函数。