On This Page
Displays a button or a component that looks like a button.
npx shadcn-vue@latest add button
<script setup lang="ts"> import { Button } from '@/components/ui/button' </script> <template> <Button>Button</Button> </template>