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

27 lines
656 B
Vue
Raw Normal View History

2025-03-04 10:12:57 +00:00
<template>
<DocSectionText v-bind="$attrs">
2025-03-05 18:28:46 +00:00
<p>Buttons have built-in badge support with the <i>badge</i> property.</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 type="button" label="Emails" badge="2" />
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 type="button" label="Emails" badge="2" />
2025-03-04 10:12:57 +00:00
</div>
</template>
<script setup>
import Button from '@/volt/button';
<\/script>
`);
</script>