How to get the refs for all components rendered through Slice Zone?

I want to get a list of references to all the components on my page. I was previously using Vue's ref in the v-for loop that rendered my components, but after migrating to Slice Zone I am not sure how to achieve the same results. I can not modify the child components as there is a lot of them.

Right now my template is quite generic, with self-explanatory props.

<template>
  <div>
    <SliceZone :components="components" :slices="slices" class="body-content" />
  </div>
</template>

Some guidance would be much appreciated!

The SliceZone is designed to dynamically render all of your components for a page based on the slices defined in your repository. So you don't need to manually list or reference each component.

Why you need to list them all?