Vue.js - Add documentation for property/event when hover over
HI,
I'd like to see the documentation for a property or event when hovering over it in the *.vue file.
For example :
export default class MyComponent extends Vue {
/**
* Example doc
*/
@Prop({default: ''}) myProp!: string;
}
<template>
<my-component :myProp="testValue"/>
</template>
So when I hover over "myProp" I'd like to see "Example doc" in the pop up.
Is this already possible (maybe I'm setting up the documentation wrong) or can this feature be requested?
Please sign in to leave a comment.
Please feel free to submit a feature request in https://youtrack.jetbrains.com/issues/WEB.