docs: typo fixed missing closing angle bracket (#28880)

This commit is contained in:
Nishant Aanjaney Jalan 2024-09-08 05:28:45 +05:30 committed by Daniel Roe
parent 7aa91ba894
commit 0102623af8
No known key found for this signature in database
GPG Key ID: 3714AB03996F442B
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ function useAsyncData<DataT, DataE>(
key: string,
handler: (nuxtApp?: NuxtApp) => Promise<DataT>,
options?: AsyncDataOptions<DataT>
): Promise<AsyncData<DataT, DataE>
): Promise<AsyncData<DataT, DataE>>
type AsyncDataOptions<DataT> = {
server?: boolean