Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can i turn my nuxt universal app to mobile native app

i already made couple of Nuxt RND (universal and spa) application. Now i want to turn those application into native mobile app. Vue native is one option,but i just want keep everything in a shape with SSR mode

Please give me your valuable suggestions

Thanks Everyone, Thanks in advance :)

like image 664
fahimarifen Avatar asked Jan 08 '20 17:01

fahimarifen


People also ask

What is universal app NUXT?

Nuxt. js is a framework built on top of Vue designed to provide opinionated defaults to address a lot of the issues developers encounter as they develop universal applications.

What is difference between Vue and NUXT js?

As a good start, Vue provides assets and components directory. But when your application grows you need to organize your codes with classifications. Nuxt sets you up with configurable separate directory for application views, layout templates, and Vuex store files.


1 Answers

You can also take a look at Capacitor by Ionic, which enables you to build Hybrid apps. It will basically take your built UI, bundle that inside generated native apps and render it through WebView. After you install Capacitor and run npx cap init you might need to set the directory of your built web assets inside capacitor.config.json to "webDir": "dist".

like image 94
htmn Avatar answered Sep 30 '22 08:09

htmn