[Vuejs]-Is there any way to pass a value from Vue js component to blade template

0πŸ‘

βœ…

If you meaning laravels blade template engine – it’s not possible. Blade runs on backend and vue runs on frontend.
What you should do is find how vuejs get {{ items.count }} (getting by ajax or directly on page from backend) and make blade use such method too

Leave a comment