vue 启动项目报错Cannot read properties of undefined (reading ‘parseComponent‘)

这篇具有很好参考价值的文章主要介绍了vue 启动项目报错Cannot read properties of undefined (reading ‘parseComponent‘)。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

如果出现如下报错大概率是因为install时中途出现异常导致vue-template-compiler依赖没有正常安装导致的,重新安装即可
Syntax Error: TypeError: Cannot read properties of undefined (reading 'parseComponent')
You may use special comments to disable some warnings.
Use // eslint-disable-next-line to ignore the next line.
Use /* eslint-disable */ to ignore all warnings in a file.

1、 yarn add vue-template-compiler
或 npm add vue-template-compiler
2、最后如果还是不行就再用
yarn upgrade –latest vue-template-compiler
npm upgrade –latest vue-template-compiler文章来源地址https://www.toymoban.com/news/detail-653810.html

到了这里,关于vue 启动项目报错Cannot read properties of undefined (reading ‘parseComponent‘)的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • Vue报错 Cannot read properties of undefined (reading ‘websiteDomains‘) 解决办法

    浏览器控制台如下报错: Unchecked runtime.lastError: The message port closed before a response was received. Uncaught (in promise) TypeError: Cannot read properties of undefined (reading \\\'websiteDomains\\\')     at xl-content.js:1:100558 此问题困扰了很久,偶然看到一篇博文,说是迅雷扩展问题 要想解决这个bug最有效的方

    2024年04月24日
    浏览(42)
  • Vue.js 报错:Cannot read property ‘validate‘ of undefined“

    起因,是我将elemnt-ui登录,默认放在mounted()函数里面,导致vue初始化就调用这个函数。 找了网上,有以下错误原因: 1.一个是你 ref写错 了,导致获取不了这个表单dom,我这显然不是。 2. 我们vue初始化时,element-ui中 validate()函数并没有绑定到this.$refs.eemployee中,这导致我们一获

    2024年02月10日
    浏览(43)
  • vue中解决TypeError: Cannot read properties of undefined (reading ‘slice‘)报错

    项目中,因为业务需求通常会在节点中渲染数据,并对数据进行截取 这个时候就可能会在控制台报错 原因是当我们页面刷新数据并没有获取到 解决办法 换成三元表达式就可以解决。

    2024年02月12日
    浏览(59)
  • vue项目中Cannot read properties of undefined (reading ‘getters‘)问题

    在vuex的index.js中引入分割的模块 import {toastStatus} from \\\"./toastStatus\\\"; 会报如下错误   toastStatus的index.js中是用export default整体导出的,但是在引用的时候用了按需导入的格式,所以报错 将花括号删除即可 import toastStatus from \\\"./toastStatus\\\";

    2024年02月12日
    浏览(49)
  • 【Vue】- 报错 Error in render: “TypeError: Cannot read properties of undefined (reading ‘nickname‘)“

    在created()钩子函数请求接口并报错数据,渲染在dom元素是可以正常渲染,但是在开发者工具中就会报错 Error in render: \\\"TypeError: Cannot read properties of undefined (reading \\\'nickname\\\')\\\"  意思是 在created调用封装请求接口的函数 ,获取到的数据再给保存起来并渲染到dom元素,不过数据渲染之

    2023年04月21日
    浏览(84)
  • Vue报错解决[Vue warn]: Error in render: “TypeError: Cannot read property ‘state‘ of undefined“

    Vue2项目中报错: [Vue warn]: Error in render: “TypeError: Cannot read property ‘state’ of undefined” [Vue warn]: Error in mounted hook: “TypeError: Cannot read property ‘dispatch’ of undefined” 这个错误提示通常出现在 Vue 组件中,它尝试读取 Vuex store 的 state 对象,但是该对象没有被定义。这可能是由以

    2024年02月10日
    浏览(56)
  • 解决Vue Uniapp中[Vue warn]: Error in render: “TypeError: Cannot read properties of undefined 报错

     在页面元素进行v-for循环遍历时通过 a.b.c 方式找到后台中的数据,解析完成后,页面正常渲染,但是控制台报错. 这是因为 js是解释型语言,读取一行,加载一样 所以页面的加载,比发送请求要快,要早 请求数据虽然放在了created中,但是请求数据是异步的,需要时间。 也

    2024年02月11日
    浏览(60)
  • [Vue warn]: Error in render: “TypeError: Cannot read property ‘ xxx ‘ of undefined“报错原因和解决

    遇到问题: 能够正常渲染出界面,但控制台仍然报出“Error in render: \\\"TypeError: Cannot read property ‘0’ of undefined”错误 原因: vuex中state管理加载的数据,异步调用显示,然后vue渲染机制 异步数据先显示初始数据,再显示带数据的数据,所以上来加载时候还是一个空对象,当渲

    2024年02月11日
    浏览(45)
  • 解决 Cannot read properties of undefined类型的报错

    报错类型一般为两种 对象类型 对象没有数据的时候为undefined 这个时候访问内部内容就会报错 举个例子 正常情况 对象有值的时候 var obj={name:‘张三’,age:18} #此时对象有数据访问不会报错 console.log(obj.name) 1 2 3 对象没值的时候 var obj={} console.log(obj.name) #就会报错 Uncaught Syntax

    2023年04月21日
    浏览(39)
  • 解决Cannot read properties of undefined (...)类型的报错

    场景: 在项目中,想要获取鼠标的元素,红色区域报错:Cannot read properties of undefined (reading \\\'grid3D\\\') 分析: Cannot read properties of undefined类型的报错,一般是报错元素的前一个元素出了问题,也就是this.option没有获取到。 报错类型一般为两种: 对象没值的时候 对象为undefined的时

    2024年02月12日
    浏览(45)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包