Answer the question
In order to leave comments, you need to log in
What is the difference between creating a Vue root instance and before the render function?
new Vue({
el: '#app',
render: h => h(App)
})
new Vue({
render: h => h(App)
}).$mount("#app");
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question