在运行vue时页面空白且出现这个错误Uncaught TypeError: Cannot read properties of undefined (reading 'config')
/引入Vue
import Vue from 'vue'
//引入App
import App from './App';
//关闭Vue的生产提示
Vue.config.productionTip = false;
new Vue({
el:'#app',
render: h => h(App)
});
你打印 Vue看看 有没有 config属性
读取config失败,检查下代码估计有个字母写错了