Vue.js。项目启动时出错 Uncaught TypeError: Cannot read properties of undefined (reading 'e')

问题描述 投票:0回答:1

我是 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
  • Linter/Formatter:仅具有错误预防功能的 ESLint
  • 额外的 lint 功能:保存时的 Lint
  • 首选放置 Babel、Eslint 等的配置:在专用配置文件中
  1. 执行命令
    cd app-frontend
    npm run serve

Once here, accessing 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

我该如何解决这个问题才能开始我的项目?我做错了什么吗?这是我第一次得到这个错误,在其他目录上创建了其他项目并且没有错误,所以我不知道发生了什么。

vue.js webpack vuejs3 webpack-dev-server
1个回答
0
投票

可能是你忘记安装了:

cd app-frontend
npm i
© www.soinside.com 2019 - 2024. All rights reserved.