[Vuejs]-Create a admin panel with vue js(Nuxt SSR) using rest api. Is it secure?

0👍

Of course!
You can use easy-to-setup auth plugin for Nuxt https://auth.nuxtjs.org/.
It provides:

  1. Middleware – lets you define custom functions that can be run before rendering either a page or a group of pages (layout).
  2. Schemes – define authentication logic.
  3. Strategy – configured instance of Scheme.

You can have multiple middleware, schemes & strategies in your project.

Leave a comment