Module build failed: TypeError: this.getOptions is not a function

Vue项目中,遇到了Module build failed: TypeError: this.getOptions is not a function的问题

在我的项目中,我以为postcss没有用,然后卸载了,可是这个好像是被集成的,如果去掉这个地方就会报错,所以我在package.json中加上了postcss相关的插件,然后npm install就解决了。

    "postcss-import": "^11.0.0",
    "postcss-loader": "^2.0.8",
    "postcss-url": "^7.2.1",

这几个版本在我这里没有出现版本冲突的问题~

你可能感兴趣的:(Vue,vue,前端)