primevue-mirror/doc/badge/PositionDoc.vue

78 lines
1.9 KiB
Vue
Raw Normal View History

2023-02-28 08:29:30 +00:00
<template>
<DocSectionText v-bind="$attrs">
2024-05-13 15:20:54 +00:00
<p>A Badge can be added to any element using the directive.</p>
2023-02-28 08:29:30 +00:00
</DocSectionText>
2024-05-20 12:14:38 +00:00
<div class="card flex flex-wrap justify-center gap-6">
2024-05-13 15:20:54 +00:00
<span v-badge="2">
<i class="pi pi-bell" style="font-size: 2rem" />
</span>
<span v-badge.danger="'5+'">
<i class="pi pi-calendar" style="font-size: 2rem" />
</span>
<span v-badge.danger>
<i class="pi pi-envelope" style="font-size: 2rem" />
</span>
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: `
2024-05-13 15:20:54 +00:00
<span v-badge="2">
<i class="pi pi-bell" style="font-size: 2rem" />
</span>
<span v-badge.danger="'5+'">
<i class="pi pi-calendar" style="font-size: 2rem" />
</span>
<span v-badge.danger>
<i class="pi pi-envelope" style="font-size: 2rem" />
</span>
2023-10-15 09:38:39 +00:00
`,
2023-09-22 12:54:14 +00:00
options: `
<template>
2024-05-20 12:14:38 +00:00
<div class="card flex flex-wrap justify-center gap-6">
2024-05-13 15:20:54 +00:00
<span v-badge="2">
<i class="pi pi-bell" style="font-size: 2rem" />
</span>
<span v-badge.danger="'5+'">
<i class="pi pi-calendar" style="font-size: 2rem" />
</span>
<span v-badge.danger>
<i class="pi pi-envelope" style="font-size: 2rem" />
</span>
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>
2024-05-20 12:14:38 +00:00
<div class="card flex flex-wrap justify-center gap-6">
2024-05-13 15:20:54 +00:00
<span v-badge="2">
<i class="pi pi-bell" style="font-size: 2rem" />
</span>
<span v-badge.danger="'5+'">
<i class="pi pi-calendar" style="font-size: 2rem" />
</span>
<span v-badge.danger>
<i class="pi pi-envelope" style="font-size: 2rem" />
</span>
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>