Uncaught TypeError: Cannot read property 'toLowerCase' of undefined

原因是 没有导出 export default { name:"Test" }  

index.js 文件

import Test from './src/main.vue'

Test.install = function (Vue) {
Vue.component(Test.name, Test
}

export default Test

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-10-10
  • 2021-09-09
  • 2021-08-28
  • 2021-07-09
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-10-05
  • 2021-12-24
  • 2021-10-03
  • 2022-12-23
  • 2022-12-23
  • 2021-11-09
相关资源
相似解决方案