開(kāi)始踩坑:
https://segmentfault.com/a/1190000006435886
用之前的高級(jí)模板需要改一下別名
使用 router
new Vue({
router,
render: h => h(App)
}).$mount('#app')
事件
Vue 2.0 去掉了 $dispatch $broadcast ,照著官方文檔寫吧
http://rc.vuejs.org/guide/components.html#Custom-Events
引用子組件,沒(méi)有了 v-ref 指令,取代的是 ref 屬性
https://github.com/vuejs/vue/issues/2873
先這樣了。