I changed a computer, and when I started npm run serve, the error was reported as follows:
Error: PostCSS received undefined instead of CSS string
The node version is incompatible with sass
1. Uninstall sass first
npm uninstall node-sass
2. Install sass again
npm install node-sass --save-dev
npm install sass-loader --save-dev
3. Success
npm run serve