I have a set of components, some components include other components via @include('my-sub-component')
The issue is that when I want to use vue I have to put the entire component in the vue.js file inside the template tags.
But inside the template I want to use the @include so I can include some sub components. This does not work.
How can I include blade components inside a vue component?