将 scss 加载到 Vue3 时出错 TypeError: this.getOptions 不是函数

Deo*_*yma 3 javascript sass sass-loader vuejs3 webpack-5

我尝试将 scss 样式文件加载到 Vue3 项目中。

我用:

"@vue/cli": "^4.5.13",
"@vue/cli-service": "^4.5.13",
"@vue/compiler-sfc": "^3.0.11",
"sass": "^1.32.13",
"sass-loader": "^11.1.1",
"vue": "^3.0.11",
"vue-resource": "^1.3.4",
"webpack": "5.0.0"
Run Code Online (Sandbox Code Playgroud)

我仍然有销售问题:

Module build failed (from ./node_modules/sass-loader/dist/cjs.js):
TypeError: this.getOptions is not a function
      at Object.loader (/home/dev/src/my-app/node_modules/sass-loader/dist/index.js:25:24)
Run Code Online (Sandbox Code Playgroud)

一切都是最新的,我已经删除了我的node_modules并重新安装了它们。我还删除了 node-sass 所以我只有 sass 包。

Ram*_*oso 8

我今天也犯了同样的错误

 "dependencies": {
    "core-js": "^3.12.1",
    "vue": "^3.0.11",
    "vuetify": "^2.5.1"
  },
  "devDependencies": {
    "@vue/cli-plugin-babel": "^4.5.13",
    "@vue/cli-plugin-eslint": "^4.5.13",
    "@vue/cli-service": "^4.5.13",
    "@vue/compiler-sfc": "^3.0.11",
    "babel-eslint": "^10.1.0",
    "eslint": "^6.8.0",
    "eslint-plugin-vue": "^7.9.0",
    "sass": "^1.34.1",
    "sass-loader": "^10.1.1",
    "vue-loader-v16": "^16.0.0-beta.5.4"
  },
Run Code Online (Sandbox Code Playgroud)

从 "sass-loader": "^12.0.0" 更改为 "sass-loader": "^10.1.1"

跑步:

rm -rf node_modules
rm package-lock.json
npm install
Run Code Online (Sandbox Code Playgroud)

对我来说它解决了