一步一步走下来的,为啥出现了这个错误
import Vue from vue;
import App from './app.vue';
new Vue({
el: '#app',
render: (h) => h(App) //通过creatApp参数h将App挂载
});
只不过这里不一样,但是改成一样还是这个错误
import Vue from vue;
import App from './app.vue';
new Vue({
el: '#app',
render: (h) => h(App) //通过creatApp参数h将App挂载
});
只不过这里不一样,但是改成一样还是这个错误
2018-08-07
举报