javascript - vuejs的extend方法在vue2中不知道是否还有,解释一下
ringa_lee
ringa_lee 2017-04-17 16:31:49
0
2
489
ringa_lee
ringa_lee

ringa_lee

全部回覆(2)
左手右手慢动作

從 Vue 1.x 遷移到2.x
從 Vue Router 0.7.x 遷移2.x
從 Vuex 0.6.x 遷移到 1.0(2.0)

左手右手慢动作

寫法上沒多少變化。
提供你兩種寫法,自己看情況用


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

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!