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
- Host: GitHub
- URL: https://github.com/maximemoreillon/vuetify3-application-template
- Owner: maximemoreillon
- Created: 2022-11-18T04:51:33.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-10-31T01:12:01.000Z (over 1 year ago)
- Last Synced: 2025-03-08T04:48:12.336Z (over 1 year ago)
- Topics: vue3, vuetify3
- Language: Vue
- Homepage:
- Size: 1020 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
}
```