useSilos
Get the all silo nodes configured in nuxt.config.ts. This returns a list of all the silos in the application, under the configured hostname.
Often useCurrentSilo are the one you wan't to use, to get the closes silo node to the current page.
Usage
vue
<script setup lang="ts">
const silos = await useSilos()
</script>