@guigas In my opinion, it is possible to use both Blade templates and Vue with Jetstream. Jetstream provides a UI scaffold that you can use with either Livewire or with Inertia.js, which is a front-end framework for building single-page apps. If you want to stick with Blade for the majority of your pages but still use Vue for a few components, you can use the Blade templates for your HTML, and write the Vue components that you need as separate .vue files. You can then include those components on your pages where you need them.
If you prefer, you could also use Livewire along with Blade templates. Livewire is a full-stack framework for building dynamic, interactive UIs using Laravel on the back-end and JavaScript on the front-end. With Livewire, you can write dynamic, reactive components using PHP that run on the server and update the page dynamically without a full page refresh. This can be a good choice if you need more dynamic, real-time updates than you can achieve with simple Blade templates.