I'm building a Vue library with TypeScript. I'd like to export the documentation of the components, like I do with ordinary functions.
Previously we would do this:
<script>
/**
* This is the documentation of my component.
*/
export default {
}
</script>
<template></template>
But now with script setup:
<script setup lang="ts">
</script>
<template></template>
How do we document the component?