问题:

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

 

 

原因:

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

 

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

  Uncaught TypeError: Cannot read property 'toLowerCase' of undefined

解决:

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

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