Is there a way to disable attribute inheritance for a component's options when using script setup syntax with Typescript in Vue 3?
Here is the JavaScript code example:
app.component('date-picker', {
inheritAttrs: false,
// [..]
})
How can I achieve the same result in script setup with Typescript?
<script setup lang="ts">
// How do I set inheritAttrs here?
</script>