You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have updated the vue version to 3.2.45 but JSDOC still not showing.
Here is my component props:
constprops=withDefaults(defineProps<{/** * The variant to use. * @default filled */variant?: Variant/** * The color of the component. * @default primary */colorScheme?: ColorScheme/** * Loading state of the component * @default false */loading?: boolean}>(),{variant: 'filled',colorScheme: 'primary',loading: false,})
When the mouse is over, cannot see the comment, and cannot jump to the definition by
ctrl+ left
clickingAfter deleting the default option, can see the definition information and display the jump
Use <script> object props has the same problem,but use <script setup> withDefaults() does not
This is a feature or what should I set ?
The operating environment is as follows
The text was updated successfully, but these errors were encountered: