component-usage-doc
Access detailed usage documentation for shadcn-vue components by specifying the component type and name. Simplify development with clear instructions and examples.
Instructions
read usage doc of a component, Use this tool when mentions /doc.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | name of the component in lowercase | |
type | Yes | type of the component |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"description": "name of the component in lowercase",
"type": "string"
},
"type": {
"description": "type of the component",
"enum": [
"components",
"charts"
],
"type": "string"
}
},
"required": [
"type",
"name"
],
"type": "object"
}