Node Sass version 5.0.0 is incompatible with^4.0.0 问题解决
出现该问题是node-sass的版本过高,sass的值期待为4.0.0
1. 卸载掉node sass5.0.0
npm uninstall node-sass
2.重装淘宝镜像
npm install -g cnpm --registry=https://registry.npm.taobao.org
3.使用淘宝镜像,重装sass
cnpm install node-sass@4.14.1
4.重启vue项目
npm run dev