20181203——Vue2.0 render:h => h(App)

new Vue({

  router,
  store,
  //components: { App }  vue1.0的写法
  render: h => h(App)    vue2.0的写法
}).$mount('#app')

在这里插入图片描述

在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/qq_36344771/article/details/84761471