primevue-mirror/apps/showcase/doc/badge/BasicDoc.vue

50 lines
927 B
Vue
Raw Normal View History

2023-02-28 08:29:30 +00:00
<template>
<DocSectionText v-bind="$attrs">
2025-03-05 18:28:46 +00:00
<p>Content to display is defined with the <i>value</i> property or the default slot.</p>
2023-02-28 08:29:30 +00:00
</DocSectionText>
2025-03-05 18:28:46 +00:00
<div class="card flex justify-center gap-2">
2023-02-28 08:29:30 +00:00
<Badge value="2"></Badge>
2025-03-05 18:28:46 +00:00
<Badge>10</Badge>
2023-02-28 08:29:30 +00:00
</div>
<DocSectionCode :code="code" />
</template>
<script>
export default {
data() {
return {
code: {
2023-09-22 12:54:14 +00:00
basic: `
2023-10-15 09:38:39 +00:00
<Badge value="2"></Badge>
2025-03-05 18:28:46 +00:00
<Badge>10</Badge>
2023-10-15 09:38:39 +00:00
`,
2023-09-22 12:54:14 +00:00
options: `
<template>
2025-03-05 18:28:46 +00:00
<div class="card flex justify-center gap-2">
2023-02-28 08:29:30 +00:00
<Badge value="2"></Badge>
2025-03-05 18:28:46 +00:00
<Badge>10</Badge>
2023-02-28 08:29:30 +00:00
</div>
</template>
<script>
2023-10-15 09:38:39 +00:00
<\/script>
`,
2023-09-22 12:54:14 +00:00
composition: `
<template>
2025-03-05 18:28:46 +00:00
<div class="card flex justify-center gap-2">
2023-02-28 08:29:30 +00:00
<Badge value="2"></Badge>
2025-03-05 18:28:46 +00:00
<Badge>10</Badge>
2023-02-28 08:29:30 +00:00
</div>
</template>
<script setup>
2023-10-15 09:38:39 +00:00
<\/script>
`
2023-02-28 08:29:30 +00:00
}
};
}
};
</script>