<a-auto-complete>
<template #options>
<a-select-opt-group
v-for="(item, idx) in arr"
:key="idx"
>
<template #label>
<span> {{ item.label }} </span>
</template>
<a-select-option
v-for="(el, idx2) in item.children"
:key="`${idx}_${idx2}`"
:value="el.value"
>
<div>{{ el.label }}</div>
</a-select-option>
</a-select-opt-group>
</template>
</a-auto-complete>