Can we transfer a vue.js project to a nuxt.js project and how?
Hi everyone clearly can we transfer a vuejs application to nuxt.js without worry or by copying and pasting the views and component images without destroying all ?? and nuxt.js he solves the problem of SEO and google bots knowing that for the moment j no backend and that the data in front is fixed ?? this question is for people experimenting with nuxt.js and vue.js Thanks to you #1 Answers Your question is very relative. I'll try some tips for you, and maybe you can look at the options. Nuxt is a framework, it works in a pre-defined way, you need to create the structure of your code inside an appropriate folders. Example are the stores, layouts, the pages or the components... So, let's assume that you have a vue component and need to migrate it to NuxtJs. The code inside the component is a little different, but not so much, because in the vue you need to declare the vue instance, and import the things to render, since Nuxt does this in an automated way, you will not creat...