Add nuxt tutorial

This commit is contained in:
Vincent (Wen Yu) Ge
2023-11-24 22:45:38 +00:00
parent 740659282e
commit 3538fa687f
3 changed files with 4 additions and 2 deletions

View File

@@ -5,6 +5,7 @@ description: Learn to build an idea tracker app with Appwrite and Nuxt with auth
step: 1
difficulty: beginner
readtime: 25
framework: Nuxt
back: /docs
---

View File

@@ -12,7 +12,7 @@ With a login function, we can differentiate between users and decide which users
We will build a page with a simple login form and store its related logic in a `useUserSession` composable so it can be reused, starting with the composable.
## User session composable {% #user-session-composable %}
# User session composable {% #user-session-composable %}
There are a few standard functions involved in handling a user session that is added to the composable.
The user needs to be able to register to an account, login to the account and logout from it.