[Vuejs]-Why isn't Vue.js updating a child component?

0👍

I think I have figured it out. Wrong path to the child component… so I changed from import navbar from './components/Header.vue' to import navbar from './Header.vue' and it’s working. I was weird it was showing an older version of my file though. Can’t really understand why it was doing that.

Leave a comment