解決方法
找到/node_modules/vue-loader/lib/template-compiler/index.js, 然后修改代碼
解決方法
if (!isProduction) {
code = prettier.format(code, { semi: false, parser: 'babylon' })
}
//babylon改為babel
if (!isProduction) {
code = prettier.format(code, { semi: false, parser: 'babel' })
}