Provide slots for eg. select element option via schema/slots
Learn how to use custom slots when using schema.
vue
<template>
<Vueform
v-bind="form"
ref="form$"
/>
</template>
<script setup>
import { ref } from 'vue'
const form$ = ref(null)
const form = ref({
schema: {
// ...
}
})
<script>