Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@nuxtbase/auth-ui-vue

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nuxtbase/auth-ui-vue

![@nuxtbase/auth-ui-vue minzip package size](https://img.shields.io/bundlephobia/minzip/@nuxtbase/auth-ui-vue) ![@nuxtbase/auth-ui-vue package version](https://img.shields.io/npm/v/@nuxtbase/auth-ui-vue.svg?colorB=green) [![Netlify Status](https://api.net

  • 0.1.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
91
increased by121.95%
Maintainers
1
Weekly downloads
 
Created
Source

Auth UI Vue

@nuxtbase/auth-ui-vue minzip package size @nuxtbase/auth-ui-vue package version Netlify Status

Pre-built auth widgets to get started in minutes.

Preview

Auth UI Vue

Introduction

auth-ui-vue is a pre-built, customizable Vue component for authenticating users base on supabase

Customizable authentication UI component with custom themes and extensible styles to match your brand and aesthetic.

Installation

To start using the library, install it in your project:

pnpm install @nuxtbase/auth-ui-vue
or
yarn add @nuxtbase/auth-ui-vue

Usage

For Vue 3

<!-- App.vue -->
<template>
  ...
  <Auth
    :appearance="{
      theme: ThemeSupa
    }"
    :supabaseClient="supabaseClient"
  />
  ...
</template>

<script setup lang="ts">
  // Import predefined theme
  import { ThemeSupa } from '@supabase/auth-ui-shared'
  import { createClient } from '@supabase/supabase-js'

  import { Auth } from '@nuxtbase/auth-ui-vue'

  const supabaseClient = createClient(
    '<INSERT PROJECT URL>',
    '<INSERT PROJECT ANON API KEY>'
  )
</script>

For Nuxt 3

Define a nuxt plugin

// plugins/auth-ui-vue.client.ts

Inspiration

License

MIT @xiaoluoboding

FAQs

Package last updated on 09 Aug 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc