The vue-docgen-api shows an example of component description in the "old" options style:
<script>
import { text } from './utils'
/**
* This is an example of creating a reusable grid component and using it with external data.
* @version 1.0.5
* @author [Rafael](https://github.com/rafaesc92)
* @since Version 1.0.1
*/
export default {
name: 'grid',
props: {
...
Is there a way to add description to the component in Nuxt3 in script setup?