[Vuejs]-Not sure why I am getting "error 'Navbar' is defined but never used" when using Vue

0👍

Figured it out, basically I just didn’t realise you had to include the following:


export default {
  name: 'App',
  components: {
    Navbar
  }
}

Hope this can help someone!

Leave a comment