### Create a Vue component Source: https://shadcn-vue.com/docs/registry/getting-started Example of a simple Vue component using the script setup syntax. ```vue ``` -------------------------------- ### Installation Commands Source: https://shadcn-vue.com/docs/components/empty Commands to install the Empty component via the CLI. ```bash pnpm dlx shadcn-vue@latest add empty ``` -------------------------------- ### Define installation documentation Source: https://shadcn-vue.com/docs/registry/registry-item-json Use the docs property to display a custom message to the user after installing the registry item via the CLI. ```json { "docs": "Remember to add the FOO_BAR environment variable to your .env file." } ``` -------------------------------- ### Installation via CLI Source: https://shadcn-vue.com/docs/components/input Command to add the Input component to your project. ```bash pnpm dlx shadcn-vue@latest add input ``` -------------------------------- ### Implement Navigation Menu in Vue Source: https://shadcn-vue.com/docs/components/navigation-menu A complete example showing the setup of a Navigation Menu with triggers, content panels, and custom list items. ```vue