skip to Main Content

I am using Vue and now I want to use Nextjs framework for SEO and server side rendering and more benefits.

I have worked a little with React before, but I want to focus on Vue.

Can I use Nextjs with Vue 3 instead of React?

2

Answers


  1. Next JS is a framework that is specifically designed for React applications. While you may be able to get Next JS to work with Vue with some hacks, it is not recommended. I’ll suggest you look into Nuxt JS which is a framework that was specifically designed for Vue JS applications offering features that support server-side rendering and search engine optimisation (SEO). Here’s a link to Nuxt JS’s documentation for your reference.

    https://nuxt.com/docs

    Hope this helps.

    Login or Signup to reply.
  2. Not sure what Next brings of a higher value for server-side rendering, but you could indeed use Nuxt as mentioned in the other answer.
    Or even consider using Astro + Vue, both mix well together!
    (Astro is able to mix any kind of framework, like React + Vue + Svelte at the same time, while having a nice ecosystem + community + server support too)


    Other alternatives like Vitesse and Îles are also available but those projects are really tiny and not as hugely maintained. Give it a search if you’re really not happy with the Nuxt or Astro.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search