Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

varovas's avatar

Livewire + Aplinejs and Vue in same project. Would it be a good practice?

Hi, I will be building a medium sized project. As I like livewire for its simplicity and ease of use, but that new project will have some components, that I think Livewire will not handle properly. So I would use Vue for these large components. I was wondering if it would be a good practice to code some small interactive parts with Livewire (ex. Add to cart button, cart data updates, post a review form and similar things) and for large components use Vue? Or I shouldn't mix them, and go with Vue all the way?

0 likes
1 reply
Jsanwo64's avatar

Yes, it's totally fine to use Livewire for small parts (like add to cart, reviews, etc.) and Vue for bigger, more complex components. Just keep them separate and avoid mixing them in the same DOM area. This hybrid approach works well for many projects.

Please or to participate in this conversation.