[Vuejs]-VueJS Custom Component Import Works Sometimes

0👍

You need to avoid the reserved keyword as a component name. image is a reserved keyword. Whenever you use <image>|<Image> into Vue it renders as image which is reserved.

Leave a comment