jsdoc-vuejs
jsdoc-vuejs copied to clipboard
π A JSDoc plugin for documenting .vue files.
With jsdoc-vuejs v3.0.9 the standard JSDoc `@description` tag does not rendered into documentation, see my code below: ``` /** * @description Az Γ©rtesΓtΓ©si sΓ‘v komponense * * @vue-computed {Boolean} visible.get...
Behaviour: Outputs markdown as is.  Expected: Parse markdown (eg links) and render into HTML in the docs. To replicate: Specify additional tags to process...
In the [example](https://github.com/Kocal/jsdoc-vuejs/blob/master/example/src/better-components/BetterCounter.vue#L65) you have a jsdoc block over a helper function (not a vuejs event). Is that documentation supposed to be generated? The only thing generated for me is...
Is there a way to output the docs as markdown files instad of html? I tried using [jsdoc-to-markdown](https://github.com/jsdoc2md/jsdoc-to-markdown) but i can't make it work.
when I use "debounce" in *.vue , it cannot recognize the method code: ```javascript methods: { /** * Do something */ demo: debounce(function () { do something... }, 350) }...
Hi,Thanks for your work on this. I have a problem: I create a custom jsdoc template with my own css style,etc. jsdocs folder: βββ plugins βββ template β βββ static...
Abuse `data-testid` attribute, and create custom Chai assertions
Thanks for the good work. I'm not sure why, but when I try to documents methods of a mixin, these aren't displayed: ```javascript /** * Description * @mixin mixins/somename *...
Why jsdoc-vuejs doesnot support markdown plugin? It doesnot even support multiple-line comments.
By default @vue-prop don't set default value and set require to true ``` /** * ... * @vue-prop {Number} step - Set increment/decrement step */ props: { ... step: {...