UNPKG

element-plus

Version:

A Component Library for Vue 3

9 lines (8 loc) 314 B
import type { ComponentInternalInstance } from 'vue'; export declare const useOrderedChildren: <T extends { uid: number; }>(vm: ComponentInternalInstance, childComponentName: string) => { children: import("vue").ShallowRef<T[]>; addChild: (child: T) => void; removeChild: (uid: number) => void; };