vue

154 阅读1分钟
const app = new Vue({
  router
}).$mount('#app')
// 等于
new Vue({
el: '#app',
render: h =>h(App)
})

前者是延迟挂在,后者是创建Vue实例的时候就挂在