ringa_lee2017-04-17 16:33:49
写法上没多少变化。
给你提供两种写法,自己看情况用
const router = new VueRouter({ .... })
...
// 第一种写法
const app = new Vue({
router,
...App // 扩展
}).$mount('#app')
// 第二种
new Vue({
el: '#app',
router,
template: '<App/>',
components: { App }
})
另外Vue.extend
的作用是 使用基础 Vue 构造器,创建一个“子类”。参数是一个包含组件选项的对象。
看看源码,会一目了然的。global-api/extend