using nuxt with vue 3 without using composition api

Viewed 18

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?

1 Answers

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