Logo Vue Auth 3
Guide
Release Notes
GitHub
Guide
Release Notes
GitHub
  • Introduction

    • What is vue-auth3?
    • Getting Started
    • Plugins
    • Drivers
    • Auth Meta
    • Requests
    • OAuth2
    • Token
    • Cookie
  • Methods

    • Overview
      • Init
      • User Data
      • Login / Register
      • Impersonating
      • Utils
    • Init
    • User Data
    • Login & Register
    • Impersonating
    • Utils
  • Config

    • Core
    • Base
  • Composition API

    • useAuth
    • useUser

Full list of all methods available in vue-auth plugin.

Both auth are available and will point to the same auth instance.

Init #

  • auth.ready()
  • auth.load()
  • auth.check()

User Data #

  • auth.user()
  • auth.fetch()

Login / Register #

  • auth.register()
  • auth.login()
  • auth.oauth2()
  • auth.logout()

Impersonating #

  • auth.impersonate()
  • auth.unimpersonate()
  • auth.impersonating()

Utils #

  • auth.remember()
  • auth.unremember()
  • auth.redirect()
  • auth.refresh()
  • auth.token()
  • auth.disableImpersonate()
  • auth.enableImpersonate()
Edit this page on Github

Last Updated:

Cookie
Init