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

app_dev's avatar

Laravel, Vue and SEO

I have a SPA with Laravel and VUE. Vue 3, Vue Router used. I'm curious about search engine optimization issues. Google; Can VUE understand my code ? Is there a published document on this subject ?

0 likes
1 reply
martinbean's avatar
Level 80

@app_dev Vue is a client-side framework. If you push all your rendering and content fetching to the client side, then it’s not going to be as optimised as a server-rendered application.

Yes, Google may say they’re able to index some JavaScript, but it’s Google and it’s not 100%. It also means you’re app isn’t going to share anything when sharing your pages on social networking websites like Twitter and Facebook.

So if you’re worried about SEO, I’d say don’t build a completely client-rendered app.

1 like

Please or to participate in this conversation.