jsdoc-vuejs icon indicating copy to clipboard operation
jsdoc-vuejs copied to clipboard

πŸ“– A JSDoc plugin for documenting .vue files.

Results 58 jsdoc-vuejs issues
Sort by recently updated
recently updated
newest added

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. ![Screenshot 2021-02-08 at 19 38 36](https://user-images.githubusercontent.com/4947962/107259126-4ce07c00-6a45-11eb-8d61-e74d7594ce10.png) 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: {...