本页内容
显示一个按钮或一个看起来像按钮的组件。
npx shadcn-vue@latest add button
<script setup lang="ts"> import { Button } from '@/components/ui/button' </script> <template> <Button>Button</Button> </template>