mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
types(@vant/use): useChldren support generics (#8136)
This commit is contained in:
parent
26601e9ac3
commit
6ed34d2629
@ -56,8 +56,10 @@ export function sortChildren(
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
export function useChildren(key: string | symbol) {
|
export function useChildren<
|
||||||
const publicChildren: ComponentPublicInstance[] = reactive([]);
|
Child extends ComponentPublicInstance = ComponentPublicInstance
|
||||||
|
>(key: string | symbol) {
|
||||||
|
const publicChildren: Child[] = reactive([]);
|
||||||
const internalChildren: ComponentInternalInstance[] = reactive([]);
|
const internalChildren: ComponentInternalInstance[] = reactive([]);
|
||||||
const parent = getCurrentInstance()!;
|
const parent = getCurrentInstance()!;
|
||||||
|
|
||||||
@ -65,7 +67,7 @@ export function useChildren(key: string | symbol) {
|
|||||||
const link = (child: ComponentInternalInstance) => {
|
const link = (child: ComponentInternalInstance) => {
|
||||||
if (child.proxy) {
|
if (child.proxy) {
|
||||||
internalChildren.push(child);
|
internalChildren.push(child);
|
||||||
publicChildren.push(child.proxy);
|
publicChildren.push(child.proxy as Child);
|
||||||
sortChildren(parent, publicChildren, internalChildren);
|
sortChildren(parent, publicChildren, internalChildren);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user