primevue-mirror/apps/volt/doc/button/RoundedDoc.vue

39 lines
1.2 KiB
Vue
Raw Normal View History

2025-03-04 10:12:57 +00:00
<template>
<DocSectionText v-bind="$attrs">
2025-03-04 11:17:02 +00:00
<p>Rounded buttons have a circular border radius.</p>
2025-03-04 10:12:57 +00:00
</DocSectionText>
2025-03-04 11:17:02 +00:00
<div class="card flex justify-center flex-wrap gap-4">
<Button label="Primary" rounded />
<SecondaryButton label="Secondary" rounded />
<ContrastButton label="Contrast" rounded />
<DangerButton label="Danger" rounded />
2025-03-04 10:12:57 +00:00
</div>
<DocSectionCode :code="code" />
</template>
<script setup>
import Button from '@/volt/button';
import ContrastButton from '@/volt/button/contrast';
import DangerButton from '@/volt/button/danger';
import SecondaryButton from '@/volt/button/secondary';
2025-03-04 10:12:57 +00:00
import { ref } from 'vue';
const code = ref(`
<template>
2025-03-04 11:17:02 +00:00
<div class="card flex justify-center flex-wrap gap-4">
<Button label="Primary" rounded />
<SecondaryButton label="Secondary" rounded />
<ContrastButton label="Contrast" rounded />
<DangerButton label="Danger" rounded />
2025-03-04 10:12:57 +00:00
</div>
</template>
<script setup>
import Button from '@/volt/button';
import ContrastButton from '@/volt/button/contrast';
import DangerButton from '@/volt/button/danger';
import SecondaryButton from '@/volt/button/secondary';
2025-03-04 10:12:57 +00:00
<\/script>
`);
</script>