Home > Net >  using nuxt with vue 3 without using composition api
using nuxt with vue 3 without using composition api

Time:09-10

I want to do a project by nuxt and vue but I have a question that can I use nuxt with Vue3 without using composition API?

CodePudding user response:

Yes, you totally can.

Composition API is an opt-in. You may see a lot of composition API examples but you can totally use Options API still.

  • Related