Skip to content

Commit

Permalink
docs(user-data): fix a code sample (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
ismailarilik committed Mar 7, 2024
1 parent 82cd0ea commit 76f87ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/methods/user-data.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const user = computed<{
first_name: string
last_name: string
} | null>(() => {
return this.$auth.user() || {}
return auth.user() || {}
})
function update() {
Expand Down

0 comments on commit 76f87ad

Please sign in to comment.