Function defineOptions()
This macro can be used to declare component
options directly inside <script setup>
without
having to use a separate <script>
block:
<script setup>
defineOptions({
inheritAttrs: false,
customOptions: {
/* ... */
}
})
</script>