我只是想学习一个教程,它告诉我如何安装node sass和sass loader.当我这样做时,我会得到以下错误:

 ERROR  Failed to compile with 1 errors                                                                       6:21:28 PM
 error  in ./src/components/TodoList.vue

Module build failed: TypeError: this.getResolve is not a function
    at Object.loader (C:\xampp\htdocs\projects\todo-vue\node_modules\sass-loader\dist\index.js:52:26)

 @ ./node_modules/vue-style-loader!./node_modules/css-loader/dist/cjs.js?{"sourceMap":true}!./node_modules/vue-loader/lib/style-compiler?{"vue":true,"id":"data-v-3de47834","scoped":false,"hasInlineConfig":false}!./node_modules/sass-loader/dist/cjs.js?{"sourceMap":true}!./node_modules/vue-loader/lib/selector.js?type=styles&index=0!./src/components/TodoList.vue 4:14-377 13:3-17:5 14:22-385
 @ ./src/components/TodoList.vue
 @ ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/selector.js?type=script&index=0!./src/App.vue
 @ ./src/App.vue
 @ ./src/main.js
 @ multi (webpack)-dev-server/client?http://localhost:8080 webpack/hot/dev-server ./src/main.js

我的Package.json文件

{
  "name": "todo-vue",
  "version": "1.0.0",
  "description": "A Vue.js project",
  "author": "Jethro Hazelhurst <j.hazelhurst1994@gmail.com>",
  "private": true,
  "scripts": {
    "dev": "webpack-dev-server --inline --progress --config build/webpack.dev.conf.js",
    "start": "npm run dev",
    "build": "node build/build.js"
  },
  "dependencies": {
    "node-sass": "^4.13.0",
    "sass-loader": "^8.0.0",
    "vue": "^2.5.2"
  },
  "devDependencies": {
    "autoprefixer": "^7.1.2",
    "babel-core": "^6.22.1",
    "babel-helper-vue-jsx-merge-props": "^2.0.3",
    "babel-loader": "^7.1.1",
    "babel-plugin-syntax-jsx": "^6.18.0",
    "babel-plugin-transform-runtime": "^6.22.0",
    "babel-plugin-transform-vue-jsx": "^3.5.0",
    "babel-preset-env": "^1.3.2",
    "babel-preset-stage-2": "^6.22.0",
    "chalk": "^2.0.1",
    "copy-webpack-plugin": "^4.0.1",
    "css-loader": "^3.2.0",
    "extract-text-webpack-plugin": "^3.0.0",
    "file-loader": "^1.1.4",
    "friendly-errors-webpack-plugin": "^1.6.1",
    "html-webpack-plugin": "^2.30.1",
    "node-notifier": "^5.1.2",
    "optimize-css-assets-webpack-plugin": "^3.2.0",
    "ora": "^1.2.0",
    "portfinder": "^1.0.13",
    "postcss-import": "^11.0.0",
    "postcss-loader": "^2.0.8",
    "postcss-url": "^7.2.1",
    "rimraf": "^2.6.0",
    "semver": "^5.3.0",
    "shelljs": "^0.7.6",
    "uglifyjs-webpack-plugin": "^1.1.1",
    "url-loader": "^2.2.0",
    "vue-loader": "^13.3.0",
    "vue-style-loader": "^3.0.1",
    "vue-template-compiler": "^2.5.2",
    "webpack": "^3.12.0",
    "webpack-bundle-analyzer": "^3.6.0",
    "webpack-dev-server": "^2.9.1",
    "webpack-merge": "^4.1.0"
  },
  "engines": {
    "node": ">= 6.0.0",
    "npm": ">= 3.0.0"
  },
  "browserslist": [
    "> 1%",
    "last 2 versions",
    "not ie <= 8"
  ]
}

我设置为<style lang="scss">的Vue文件

<template>
    <div>
        <input type="text" class="todo-input" placeholder="What needs to be done">
        Todo list goes here
    </div>
</template>

<script>
export default {
  name: 'todo-list',
  data () {
    return {
      msg: 'Welcome to Your Vue.js App'
    }
  }
}
</script>

<style lang="scss">

</style>

不知道我哪里出了问题.

推荐答案

你有"webpack": "^3.12.0""sass-loader": "^8.0.0",我认为这是不相容的(正如在this Github issue中讨论的).

要解决这个问题,要么将webpack升级到4版,要么将sass-loader降级到7版(我个人就是这么做的).

Vue.js相关问答推荐

如何使用 vueJS 上的 ref( ) 函数创建二维数组定义?

作为props 传递的原始 ref 的 Vue 3 react 性

处理多张卡片中的按钮

vue 计算的 ant watch 不会在嵌套属性更改时触发

将 Vue 应用程序挂载到主 Vue 应用程序的容器中

Vue动态mapGetters

动态插入字符串上的 Vue 事件处理程序不起作用

VueJs this.method 不是函数?如何在 Vuejs 的另一个方法中调用一个方法?

Amazon EC2 错误:监听 EACCES 0.0.0.0:80

如何更改 Vuetify 日历日期格式

Jest错误找不到模块....

为什么 v-model 不适用于数组和 v-for 循环?

Vue 组件中的组件渲染函数中可能存在无限更新循环警告

我如何能够在 vue js html 中以给定格式进行多项 Select 和传递数据?

如何从 keep-alive 中销毁缓存的 Vue 组件?

vuex - 即使不推荐,是否可以直接更改状态?

Vue.js react性如何在幕后工作?

在 Vuejs 中放置 firebase.auth().onAuthStateChanged() 的位置

根据nuxt中的url参数动态加载组件

返回 VueJS 方法的Native Code消息