types.js:39 Uncaught TypeError: Cannot read properties of undefined (reading 'prototype')
时间: 2023-08-24 17:13:34 浏览: 251
nodejs中文手册
根据引用和引用的报错信息,可以看出报错位置在types.js的第39行,出现了"Cannot read properties of undefined (reading 'prototype')"的错误。这个错误通常发生在无法读取未定义的属性时。根据引用的建议,你可以先确认你的项目是基于Vue2还是Vue3。如果是Vue2项目,你可以尝试通过执行以下命令来安装element-ui:npm i element-ui --save。这个命令将安装element-ui并将其保存在项目的依赖中。这个步骤可能会解决你遇到的报错问题。
阅读全文