An open API service indexing awesome lists of open source software.

https://github.com/maximemoreillon/vuetify3-application-template

A templating component for Vuetify 3 applications
https://github.com/maximemoreillon/vuetify3-application-template

vue3 vuetify3

Last synced: 5 months ago
JSON representation

A templating component for Vuetify 3 applications

Awesome Lists containing this project

README

          

# Vuetify 3 application template

Usage example:

```vue









import AppTemplate from "@moreillon/vuetify3-application-template"
import "@moreillon/vuetify3-application-template/dist/style.css"
import { ref } from "vue"

const options = ref({
title: "Example application",
author: "Maxime Moreillon",
login_url: "https://api.users.maximemoreillon.com/auth/login",
identification_url: "https://api.users.maximemoreillon.com/users/self",
})

async function handleUserChanged({ user, jwt }: any) {
// Do something with user info or JWT
}

```