userquin / vue3-google-signin

Google OAuth2 plugin for Vue3 Apps. This uses latest Google Identity Service Library. It also provides set of composables which can be used easily to do different kind of authentication strategies easily

Home Page:https://vue3-google-signin.syetalabs.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Vue3 Google Signin

Use Google Identity Services with your Vue3 App easily

Installation

  • With NPM
npm install -S vue3-google-signin
  • With Yarn
yarn add vue3-google-signin
  • With PNPM
pnpm add vue3-google-signin

Setup the Library

Setting up the library is very simple. In your application entry point(main.js or main.ts) put the following code.

// rest of the code

import GoogleOauth2Plugin from "vue3-google-signin"

app.use(GoogleOauth2Plugin, {
  clientId: 'CLIENT ID OBTAINED FROM GOOGLE API CONSOLE',
});

// other config

app.mount("#app");

Development

Recommended IDE Setup

VSCode + Volar (and disable Vetur) + TypeScript Vue Plugin (Volar).

Type Support for .vue Imports in TS

TypeScript cannot handle type information for .vue imports by default, so we replace the tsc CLI with vue-tsc for type checking. In editors, we need TypeScript Vue Plugin (Volar) to make the TypeScript language service aware of .vue types.

If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a Take Over Mode that is more performant. You can enable it by the following steps:

  1. Disable the built-in TypeScript Extension
    1. Run Extensions: Show Built-in Extensions from VSCode's command palette
    2. Find TypeScript and JavaScript Language Features, right click and select Disable (Workspace)
  2. Reload the VSCode window by running Developer: Reload Window from the command palette.

Customize configuration

See Vite Configuration Reference.

Project Setup

npm install

Compile and Hot-Reload for Development

npm run dev

Type-Check, Compile and Minify for Production

npm run build

Lint with ESLint

npm run lint

About

Google OAuth2 plugin for Vue3 Apps. This uses latest Google Identity Service Library. It also provides set of composables which can be used easily to do different kind of authentication strategies easily

https://vue3-google-signin.syetalabs.io


Languages

Language:TypeScript 74.7%Language:Vue 23.5%Language:JavaScript 1.2%Language:HTML 0.6%Language:Shell 0.0%