Product
Socket Now Supports uv.lock Files
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
vue-component-meta
Advanced tools
`vue-component-meta` allows you to extract the meta-data like props, slots, events, etc from your components via static code analysis. You can even generate description for your props from your source code. This helps document your components via automati
vue-component-meta
allows you to extract the meta-data like props, slots, events, etc from your components via static code analysis. You can even generate description for your props from your source code. This helps document your components via automation. Please refer to the reference section for references.
First of all, you need to create a component meta checker using createComponentMetaChecker
:
import * as url from 'url'
import path from 'path'
import type { MetaCheckerOptions } from 'vue-component-meta'
import { createComponentMetaChecker } from 'vue-component-meta'
const __dirname = url.fileURLToPath(new URL('.', import.meta.url))
const checkerOptions: MetaCheckerOptions = {
forceUseTs: true,
schema: { ignore: ['MyIgnoredNestedProps'] },
printer: { newLine: 1 },
}
const tsconfigChecker = createComponentMetaChecker(
// Write your tsconfig path
path.join(__dirname, 'path-to-tsconfig'),
checkerOptions,
)
Now, you can extract the component meta using getComponentMeta
method of checker:
import * as url from 'url'
import path from 'path'
const __dirname = url.fileURLToPath(new URL('.', import.meta.url))
const componentPath = path.join(__dirname, 'path-to-component');
const meta = checker.getComponentMeta(componentPath);
This meta contains really useful stuff like component props, slots, events and more. You can refer to its type definition for more details.
vue-component-meta
will automatically extract the prop details like its name, default value, is required or not, etc. Additionally, you can even write prop description in source code via JSDoc comment for that prop.
/**
* Hide/Show alert based on v-model value
*/
modelValue: {
type: Boolean,
default: null,
},
When you extract the component meta and extract the description
property of that prop it will be "Hide/Show alert based on v-model value" 😍
Warning
Do note that
meta.props
will be array of props so you can't access it viameta.props.<prop-name>
. Moreover,meta.props
will also contain some global prop which you can identify viaprop.global
property.
You can use it to document your component as you build your project without writing additional documentation.
As vue-component-meta
uses static code analysis, it can't extract the dynamic prop definition.
vue-component-meta
won't be able to extract default value for prop as props can't be analyzed.
props: {
// Props definition by function execution
...useLayerProps({
color: {
default: 'primary',
},
variant: {
default: 'light',
},
}),
}
In this scenario, to get the correct default value you can let vue-component-meta
know it by writing them explicitly:
props: {
// let vue-component-meta found it
color: { default: 'primary' },
variant: { default: 'light' },
// Props definition by function execution
...useLayerProps({
color: {
default: 'primary',
},
variant: {
default: 'light',
},
}),
}
Same as above scenario you might have issue with description not generating when prop definition is dynamic. In this case writing prop description can be tricky.
When it's function execution, write prop description in function definition:
export const useLayerProp = (...) => {
const props = {
/**
* Layer variant
*/
variant: {
type: String,
default: 'text',
},
}
export { props }
}
For generating the correct required
value for props like below:
// @/composables/useProps.ts
export const disabled = {
type: Boolean,
default: false,
}
import { disabled } from '@/composables/useProps'
export default defineComponent({
props: {
disabled,
},
})
You need to add as const
to variable definition:
export const disabled = {
type: Boolean,
default: false,
- }
+ } as const
vue-component-meta
to generate components' API via automation.1.7.10 (2023/6/9) - pre-release
strictTemplates
not working for IntrinsicElement (#3214)vue-tsc
ignores type errors in .vue
files if the incremental setting is true (#2756) (#3218) - thanks @lucasavila00defineModel
and defineProps
types (#3164)Breaking changes
JSX.IntrinsicElements
type inference for better TS performance (#3259)@vue-expected-error
to @vue-expect-error
(https://github.com/vuejs/language-tools/pull/3215#issuecomment-1560355284)FAQs
Unknown package
The npm package vue-component-meta receives a total of 115,108 weekly downloads. As such, vue-component-meta popularity was classified as popular.
We found that vue-component-meta demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.
Security News
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.