其他分享
首页 > 其他分享> > 关于Vue项目中 `Uncaught TypeError: Cannot read property ‘toLowerCase‘ of undefined`的情况

关于Vue项目中 `Uncaught TypeError: Cannot read property ‘toLowerCase‘ of undefined`的情况

作者:互联网

问题:

 

 

原因:

 

 在全局注册组件时采用遍历组件池的方法,此时,每个组件都应该具备name属性,否则会出现如标题的错:

  Uncaught TypeError: Cannot read property 'toLowerCase' of undefined

解决:

在组件中加入name属性,标注组件名称

<script>
export default {
  name: 'TagsView',
  ...
}
</script>

 

标签:TypeError,toLowerCase,read,undefined,Cannot,组件,Uncaught,name
来源: https://www.cnblogs.com/smile-fanyin/p/16425645.html