vue-styleguidist / vue-styleguidist

Created from react styleguidist for Vue Components with a living style guide
https://vue-styleguidist.github.io
MIT License
2.46k stars 416 forks source link

vue-docgen-cli + vue3: jsdoc not working #1614

Open Metam opened 11 months ago

Metam commented 11 months ago

Code_89KZOOqV5X

what am I doing wrong? component description, slot binging, custom jsdoc not working

Metam commented 11 months ago

events can be described like this

emit = defineEmits([
    /** 
     * logout user
     * @event logout
     * @param ...
     */
    'logout'
])
JoJk0 commented 10 months ago

I stumbled upon https://stackoverflow.com/questions/72003493/how-to-use-jsdoc-to-document-a-vue-component-with-script-setup to see how to add component description when you use <script setup> and I can confirm adding another <script> tag with description alongside <script setup> is not working.