使用vue框架写pc页面时,我们经常会用到element-ui这个框架. 当我们吧把需要的东西都装在好运行项目的时候,有时会出现这样的错误, Module build failed: Error: No PostCSS Config found 这是因为缺少了一个配置文件,需要重新建立一个文件: postcss.config.js,配置内容如下 module.exports = { plugins: { 'autoprefixer': {browsers: 'last 5 version'} }…