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

41 lines
1.4 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 />
<Button label="Secondary" severity="secondary" rounded />
<Button label="Success" severity="success" rounded />
<Button label="Info" severity="info" rounded />
<Button label="Warn" severity="warn" rounded />
<Button label="Help" severity="help" rounded />
<Button label="Danger" severity="danger" rounded />
<Button label="Contrast" severity="contrast" rounded />
2025-03-04 10:12:57 +00:00
</div>
<DocSectionCode :code="code" />
</template>
<script setup>
import Button from '@/volt/button';
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 />
<Button label="Secondary" severity="secondary" rounded />
<Button label="Success" severity="success" rounded />
<Button label="Info" severity="info" rounded />
<Button label="Warn" severity="warn" rounded />
<Button label="Help" severity="help" rounded />
<Button label="Danger" severity="danger" rounded />
<Button label="Contrast" severity="contrast" rounded />
2025-03-04 10:12:57 +00:00
</div>
</template>
<script setup>
import Button from '@/volt/button';
<\/script>
`);
</script>