Embedding Vue.js project into Laravel Breeze dashboard
Hi! I'm working on a project that uses Laravel as the backend and Vue.js as the front end. I am using Laravel Breeze for authentication. I want to use the dashboard provided by Laravel Breeze by incorporating my Vue.js project within the dashboard for the user to interact. Is there a possible way I can integrate the Vue.js project within the dashboard? Thanks for reading!
Yes. Just add the js script you use to load Vue and make sure to have an element in your dashboard html to mount Vue to. Vue will then be available inside that element.
If you need more help, maybe you could share the blade layout file used for the dashboard and the js file you load Vue in
@Ben Hi, thanks for your response! I should have clarified this earlier, but the backend and frontend are two separate VS Code projects and I'm not sure how to import the Vue.js so that it is visible in the Laravel Breeze dashboard.