为什么我webpack生成的todolist文件,src下面的main.js是这样的
new Vue({
el: '#app',
render: h => h(App)
})
而老师的是
new Vue({
el: '#app',
components:{APP},
template:<App/>
})
new Vue({
el: '#app',
render: h => h(App)
})
而老师的是
new Vue({
el: '#app',
components:{APP},
template:<App/>
})
2018-08-03
举报