我是Vue.js的新手,在创建项目时遇到了这个错误。以下是我做的步骤:
1.通过cmd安装Vue/cli
npm install @vue/cli
1.创建Vue项目。我导航到Visual Studio终端上所需的文件夹,因为我已经准备好后端并工作。因此,在同一个文件夹中,将有与Node.js一起工作的后端和充当前端的Vue项目。执行命令vue create app-frontend
后,文件夹看起来像这样,项目作为根文件夹:
- Project
-- api-backend
-- app-frontend
1.我手动选择了功能,这是我选择的:
- 检查项目所需的功能:Babel,Linter/Formatter
- Vue版本:3.x
- 内衬/成型材料:仅带错误预防的ESLint
- 其他棉绒特征:保存时的棉绒
- 首选Babel、Eslint等的放置配置:在专用配置文件中
1.执行命令cd app-frontend
和npm run serve
一旦这里,访问localhost:8080会给我一个空页面,浏览器控制台上出现以下错误:
Uncaught TypeError: Cannot read properties of undefined (reading 'e')
at eval (stripAnsi.js:18:1)
at ./node_modules/webpack-dev-server/client/utils/stripAnsi.js (chunk-vendors.js:325:1)
at __webpack_require__ (app.js:255:33)
at fn (app.js:488:21)
at eval (webpack-internal:///./node_modules/webpack-dev-server/client/index.js?protocol=ws&hostname=192.168.1.61&port=8080&pathname=%2Fws&logging=none&progress=true&overlay=%7B%22errors%22%3Atrue%2C%22warnings%22%3Afalse%7D&reconnect=10&hot=true&live-reload=true:7:77)
at ./node_modules/webpack-dev-server/client/index.js?protocol=ws&hostname=192.168.1.61&port=8080&pathname=%2Fws&logging=none&progress=true&overlay=%7B%22errors%22%3Atrue%2C%22warnings%22%3Afalse%7D&reconnect=10&hot=true&live-reload=true (chunk-vendors.js:172:1)
at __webpack_require__ (app.js:255:33)
at app.js:1374:83
at __webpack_require__.O (app.js:301:23)
at app.js:1377:53
如何解决这个问题,以便开始我的项目?我做错什么了吗?这是我第一次得到这个错误,在其他目录上创建了其他项目,没有得到任何错误,所以我不知道发生了什么。
1条答案
按热度按时间fcg9iug31#
可能你忘了安装: