IT개발/Vue.js
아놔... ".vue" 붙이는걸...ㅠㅠ Failed to mount component: template or render function not defined.
딸바보아재
2023. 3. 7. 20:18
반응형
In my case, I imported my component (in router) as:
import bsw from 'common-mod/src/components/webcommon/webcommon'
It is simply solved if I changed it to
import bsw from 'common-mod/src/components/webcommon/webcommon.vue'
같은 경로에 동일명의 js 와 vue 파일이 있으면, 반드시, import시 .vue로 명시적으로 지정해줘라!
안그럼 묵시적으로 .js 파일부터 찾응께 알간!
반응형