feat: create atproto oauth login

This commit is contained in:
Julien Calixte
2026-03-10 12:27:35 +01:00
parent 908641e54b
commit 8843d67a80
16 changed files with 485 additions and 7 deletions

View File

@@ -9,7 +9,7 @@ import { computed } from "vue"
const props = defineProps<{ did: string }>()
const did = computed(() => props.did)
const { notes, isLoading, canLoadMore, onLoadMore } = usePublicNoteList(did)
const { notes, isLoading, canLoadMore, onLoadMore } = usePublicNoteList({ did })
const author = computedAsync(async () => getAuthor(did.value))
</script>