From 90e82c277e78905cfa55c512dc252c8dc656bb5c Mon Sep 17 00:00:00 2001 From: chenjiahan Date: Mon, 5 Oct 2020 10:26:44 +0800 Subject: [PATCH] types(@vant/use): relation key can be symbol --- packages/vant-use/src/useRelation/README.md | 4 ++-- packages/vant-use/src/useRelation/index.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/vant-use/src/useRelation/README.md b/packages/vant-use/src/useRelation/README.md index b6a674935..dfc0f3aca 100644 --- a/packages/vant-use/src/useRelation/README.md +++ b/packages/vant-use/src/useRelation/README.md @@ -48,14 +48,14 @@ export default { ```ts function useParent( - key: string + key: string | symbol ): { parent?: T; index?: Ref; }; function useChildren( - key: string + key: string | symbol ): { children: ComponentPublicInstance[]; linkChildren: (value: any) => void; diff --git a/packages/vant-use/src/useRelation/index.ts b/packages/vant-use/src/useRelation/index.ts index 01e70d635..6ca02f4da 100644 --- a/packages/vant-use/src/useRelation/index.ts +++ b/packages/vant-use/src/useRelation/index.ts @@ -59,7 +59,7 @@ export function sortChildren( }); } -export function useChildren(key: string) { +export function useChildren(key: string | symbol) { const publicChildren: PublicInstance[] = reactive([]); const internalChildren: InternalInstance[] = reactive([]); const parent = getCurrentInstance()!; @@ -101,7 +101,7 @@ type ParentProvide = T & { internalChildren: InternalInstance[]; }; -export function useParent(key: string) { +export function useParent(key: string | symbol) { const parent = inject | null>(key, null); if (parent) {