[Vuejs]-Problem nesting Vue components within components

3👍

You have your components inside data() function.
Try this instead:

   export default {
      name: 'Splash',
      components: {
        Navbar
      } 
    }
👤artoju

Leave a comment