We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
// props: {}, object if (item.value.type == 'ObjectExpression') { item.value.properties.forEach(prop => { // test: Type if (prop.value.type == 'Identifier') { props.push({ name: prop.key.name, // prop.key.name为undefined,改为prop.key.value即可 type: prop.value.name }); }
The text was updated successfully, but these errors were encountered:
这个是旧版的,你可以用这个 https://github.com/ccqgithub/jsdoc-vuedoc 试试?
Sorry, something went wrong.
No branches or pull requests
// props: {}, object
if (item.value.type == 'ObjectExpression') {
item.value.properties.forEach(prop => {
// test: Type
if (prop.value.type == 'Identifier') {
props.push({
name: prop.key.name, // prop.key.name为undefined,改为prop.key.value即可
type: prop.value.name
});
}
The text was updated successfully, but these errors were encountered: