NOTE2:If you allow all ofnode_modulesto try to be parsed, you might kill performance. Use responsibly. jsx Does your component contain JSX? By default, this is set to true. If you do not disable it, babel will fail with typescript syntax like(<any>window).$. ...
1 - // Vitest Snapshot v1 1 + // Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html 2 2 3 3 exports[`tests button > should match the snapshot 1`] = ` 4 4 { Diff for: packages/vue-docgen-api/tests/components/button-noscript/__snapshots__/button-noscript...
My reference is I know vue-docgen-api on its own is supposed to pull in possible values through the @values field in jsdoc, and that I have a hazy memory of it working in some combination of Vue 2 and storybook 6. For vue-component-meta, though, I'm not sure how to make the au...
2 import type { ParseOptions, DocGenOptions } from './types'; 3 import * as ScriptHandlers from './script-handlers'; 4 import * as TemplateHandlers from './template-handlers'; 5 import getDoclets from './utils/getDoclets'; 6 import getProperties from './script-handlers/utils/get...
CI is running/has finished running commands for commit c716932. As they complete they will appear below. Click to see the status, the terminal output, and the build insights. 📂 See all runs for this CI Pipeline Execution ✅ Successfully ran 1 target nx run-many -t build --parallel...
If you've switched from Vue 2 to Vue 3, you've probably heard of the Composition API. If you haven't, it's a brand-new way to set your component's options. It wraps all of the same functionality of the Options API in a setup function, rather than a configuration object. It's ...