add guest auth pages
This commit is contained in:
parent
edcaf80b98
commit
02c947708f
13 changed files with 1499 additions and 10 deletions
10
frontend/website/src/stores/auth.ts
Normal file
10
frontend/website/src/stores/auth.ts
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
import { ref } from 'vue'
|
||||
import { defineStore } from 'pinia'
|
||||
|
||||
export const useAuthStore = defineStore('auth', () => {
|
||||
const isAuthenticated = ref(false)
|
||||
|
||||
return {
|
||||
isAuthenticated,
|
||||
}
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue