this post was submitted on 13 Nov 2023
3 points (100.0% liked)

Vue.js

116 readers
1 users here now

A place for the Vue community to come together and discuss projects, news, tips and evertything else concerning the Vue js framework.

founded 1 year ago
MODERATORS
 

Hey there,

I'm somewhat new to Vue. But I am wondering what backend to use.

As far as I understood GraphQL should do the trick. But when I was taking the Mastery Courses for free this weekend, I came across Nuxt, which is a full stack framework.

What are your opinions or even other ideas?

you are viewing a single comment's thread
view the rest of the comments
[–] jogai_san 2 points 9 months ago (1 children)

Nuxt is still a vue framework, it uses Nitro to make it full stack. Personally I wouldn't choose an all-in-one framework. The vitesse template shows you can compose most of the same functionality with separate packages: https://github.com/antfu/vitesse#features You can then choose a query library that supports graphsql like apollo or tanstack that fit your needs.

[–] LilDestructiveSheep 1 points 9 months ago (1 children)

Thanks for your reply! Will have a look into it :)

Why wouldn't you choose a full stack solution?

[–] jogai_san 1 points 8 months ago

You can do fullstack, just pick and choose the layers in the stack yourself. That way you're in control everywhere, and you can pick the best for your usecase.