mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
types(@vant/use): relation key can be symbol
This commit is contained in:
parent
32697cafad
commit
90e82c277e
@ -48,14 +48,14 @@ export default {
|
|||||||
|
|
||||||
```ts
|
```ts
|
||||||
function useParent<T>(
|
function useParent<T>(
|
||||||
key: string
|
key: string | symbol
|
||||||
): {
|
): {
|
||||||
parent?: T;
|
parent?: T;
|
||||||
index?: Ref<number>;
|
index?: Ref<number>;
|
||||||
};
|
};
|
||||||
|
|
||||||
function useChildren(
|
function useChildren(
|
||||||
key: string
|
key: string | symbol
|
||||||
): {
|
): {
|
||||||
children: ComponentPublicInstance[];
|
children: ComponentPublicInstance[];
|
||||||
linkChildren: (value: any) => void;
|
linkChildren: (value: any) => void;
|
||||||
|
@ -59,7 +59,7 @@ export function sortChildren(
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
export function useChildren(key: string) {
|
export function useChildren(key: string | symbol) {
|
||||||
const publicChildren: PublicInstance[] = reactive([]);
|
const publicChildren: PublicInstance[] = reactive([]);
|
||||||
const internalChildren: InternalInstance[] = reactive([]);
|
const internalChildren: InternalInstance[] = reactive([]);
|
||||||
const parent = getCurrentInstance()!;
|
const parent = getCurrentInstance()!;
|
||||||
@ -101,7 +101,7 @@ type ParentProvide<T> = T & {
|
|||||||
internalChildren: InternalInstance[];
|
internalChildren: InternalInstance[];
|
||||||
};
|
};
|
||||||
|
|
||||||
export function useParent<T>(key: string) {
|
export function useParent<T>(key: string | symbol) {
|
||||||
const parent = inject<ParentProvide<T> | null>(key, null);
|
const parent = inject<ParentProvide<T> | null>(key, null);
|
||||||
|
|
||||||
if (parent) {
|
if (parent) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user