vue脚手架中文件提示错误

vue脚手架报这个错,文件放在根目录打开也没用
Parsing error: No Babel config file detected for D:\前端代码\三阶段\07\vue-se\src\components\AComp.vue. Either disable config file checking with requireConfigFile: false, or configure Babel so that it can find the config files.

img

babel.config.js文件中,

parserOptions: {
    parser: 'babel-eslint',
    requireConfigFile: false,
  },   
```javascript


```