[Vuejs]-Can I combine Vue JS with Laravel and bootstrap?

-1๐Ÿ‘

โœ…

By default, fresh Laravel applications contain an ExampleComponent.vue Vue component located in the resources/js/components directory. Single file components provide a very convenient approach to building
JavaScript driven applications.

https://laravel.com/docs/5.8/frontend#writing-vue-components
It is a good approach. Components made in Vue are much easier to handle, as opposed to repeating the same code in different blade templates.

Leave a comment