2023-02-28 08:29:30 +00:00
|
|
|
<template>
|
|
|
|
<DocSectionText v-bind="$attrs">
|
|
|
|
<p>Buttons can have icons without labels.</p>
|
|
|
|
</DocSectionText>
|
|
|
|
<div class="card">
|
|
|
|
<div class="flex flex-wrap justify-content-center gap-3 mb-4">
|
|
|
|
<Button icon="pi pi-check" aria-label="Filter" />
|
2023-03-03 07:04:07 +00:00
|
|
|
<Button icon="pi pi-bookmark" severity="secondary" aria-label="Bookmark" />
|
|
|
|
<Button icon="pi pi-search" severity="success" aria-label="Search" />
|
|
|
|
<Button icon="pi pi-user" severity="info" aria-label="User" />
|
|
|
|
<Button icon="pi pi-bell" severity="warning" aria-label="Notification" />
|
|
|
|
<Button icon="pi pi-heart" severity="help" aria-label="Favorite" />
|
|
|
|
<Button icon="pi pi-times" severity="danger" aria-label="Cancel" />
|
2023-02-28 08:29:30 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="flex flex-wrap justify-content-center gap-3 mb-4">
|
2023-03-03 07:04:07 +00:00
|
|
|
<Button icon="pi pi-check" rounded aria-label="Filter" />
|
|
|
|
<Button icon="pi pi-bookmark" severity="secondary" rounded aria-label="Bookmark" />
|
|
|
|
<Button icon="pi pi-search" severity="success" rounded aria-label="Search" />
|
|
|
|
<Button icon="pi pi-user" severity="info" rounded aria-label="User" />
|
|
|
|
<Button icon="pi pi-bell" severity="warning" rounded aria-label="Notification" />
|
|
|
|
<Button icon="pi pi-heart" severity="help" rounded aria-label="Favorite" />
|
|
|
|
<Button icon="pi pi-times" severity="danger" rounded aria-label="Cancel" />
|
2023-02-28 08:29:30 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="flex flex-wrap justify-content-center gap-3 mb-4">
|
2023-03-03 07:04:07 +00:00
|
|
|
<Button icon="pi pi-check" rounded outlined aria-label="Filter" />
|
|
|
|
<Button icon="pi pi-bookmark" severity="secondary" rounded outlined aria-label="Bookmark" />
|
|
|
|
<Button icon="pi pi-search" severity="success" rounded outlined aria-label="Search" />
|
|
|
|
<Button icon="pi pi-user" severity="info" rounded outlined aria-label="User" />
|
|
|
|
<Button icon="pi pi-bell" severity="warning" rounded outlined aria-label="Notification" />
|
|
|
|
<Button icon="pi pi-heart" severity="help" rounded outlined aria-label="Favorite" />
|
|
|
|
<Button icon="pi pi-times" severity="danger" rounded outlined aria-label="Cancel" />
|
2023-02-28 08:29:30 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="flex flex-wrap justify-content-center gap-3 mb-4">
|
2023-03-03 07:04:07 +00:00
|
|
|
<Button icon="pi pi-check" text raised rounded aria-label="Filter" />
|
|
|
|
<Button icon="pi pi-bookmark" severity="secondary" text raised rounded aria-label="Bookmark" />
|
|
|
|
<Button icon="pi pi-search" severity="success" text raised rounded aria-label="Search" />
|
|
|
|
<Button icon="pi pi-user" severity="info" text raised rounded aria-label="User" />
|
|
|
|
<Button icon="pi pi-bell" severity="warning" text raised rounded aria-label="Notification" />
|
|
|
|
<Button icon="pi pi-heart" severity="help" text raised rounded aria-label="Favorite" />
|
|
|
|
<Button icon="pi pi-times" severity="danger" text raised rounded aria-label="Cancel" />
|
2023-02-28 08:29:30 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="flex flex-wrap justify-content-center gap-3">
|
2023-03-03 07:04:07 +00:00
|
|
|
<Button icon="pi pi-check" text rounded aria-label="Filter" />
|
|
|
|
<Button icon="pi pi-bookmark" severity="secondary" text rounded aria-label="Bookmark" />
|
|
|
|
<Button icon="pi pi-search" severity="success" text rounded aria-label="Search" />
|
|
|
|
<Button icon="pi pi-user" severity="info" text rounded aria-label="User" />
|
|
|
|
<Button icon="pi pi-bell" severity="warning" text rounded aria-label="Notification" />
|
|
|
|
<Button icon="pi pi-heart" severity="help" text rounded aria-label="Favorite" />
|
|
|
|
<Button icon="pi pi-times" severity="danger" text rounded aria-label="Cancel" />
|
2023-02-28 08:29:30 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<DocSectionCode :code="code" />
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
code: {
|
2023-09-22 12:54:14 +00:00
|
|
|
basic: `
|
|
|
|
<Button icon="pi pi-check" aria-label="Filter" />
|
2023-03-03 07:04:07 +00:00
|
|
|
<Button icon="pi pi-bookmark" severity="secondary" aria-label="Bookmark" />
|
|
|
|
<Button icon="pi pi-search" severity="success" aria-label="Search" />
|
|
|
|
<Button icon="pi pi-user" severity="info" aria-label="User" />
|
|
|
|
<Button icon="pi pi-bell" severity="warning" aria-label="Notification" />
|
|
|
|
<Button icon="pi pi-heart" severity="help" aria-label="Favorite" />
|
|
|
|
<Button icon="pi pi-times" severity="danger" aria-label="Cancel" />
|
|
|
|
|
|
|
|
<Button icon="pi pi-check" rounded aria-label="Filter" />
|
|
|
|
<Button icon="pi pi-bookmark" severity="secondary" rounded aria-label="Bookmark" />
|
|
|
|
<Button icon="pi pi-search" severity="success" rounded aria-label="Search" />
|
|
|
|
<Button icon="pi pi-user" severity="info" rounded aria-label="User" />
|
|
|
|
<Button icon="pi pi-bell" severity="warning" rounded aria-label="Notification" />
|
|
|
|
<Button icon="pi pi-heart" severity="help" rounded aria-label="Favorite" />
|
|
|
|
<Button icon="pi pi-times" severity="danger" rounded aria-label="Cancel" />
|
|
|
|
|
|
|
|
<Button icon="pi pi-check" rounded outlined aria-label="Filter" />
|
|
|
|
<Button icon="pi pi-bookmark" severity="secondary" rounded outlined aria-label="Bookmark" />
|
|
|
|
<Button icon="pi pi-search" severity="success" rounded outlined aria-label="Search" />
|
|
|
|
<Button icon="pi pi-user" severity="info" rounded outlined aria-label="User" />
|
|
|
|
<Button icon="pi pi-bell" severity="warning" rounded outlined aria-label="Notification" />
|
|
|
|
<Button icon="pi pi-heart" severity="help" rounded outlined aria-label="Favorite" />
|
|
|
|
<Button icon="pi pi-times" severity="danger" rounded outlined aria-label="Cancel" />
|
|
|
|
|
|
|
|
<Button icon="pi pi-check" text raised rounded aria-label="Filter" />
|
|
|
|
<Button icon="pi pi-bookmark" severity="secondary" text raised rounded aria-label="Bookmark" />
|
|
|
|
<Button icon="pi pi-search" severity="success" text raised rounded aria-label="Search" />
|
|
|
|
<Button icon="pi pi-user" severity="info" text raised rounded aria-label="User" />
|
|
|
|
<Button icon="pi pi-bell" severity="warning" text raised rounded aria-label="Notification" />
|
|
|
|
<Button icon="pi pi-heart" severity="help" text raised rounded aria-label="Favorite" />
|
|
|
|
<Button icon="pi pi-times" severity="danger" text raised rounded aria-label="Cancel" />
|
|
|
|
|
|
|
|
<Button icon="pi pi-check" text rounded aria-label="Filter" />
|
|
|
|
<Button icon="pi pi-bookmark" severity="secondary" text rounded aria-label="Bookmark" />
|
|
|
|
<Button icon="pi pi-search" severity="success" text rounded aria-label="Search" />
|
|
|
|
<Button icon="pi pi-user" severity="info" text rounded aria-label="User" />
|
|
|
|
<Button icon="pi pi-bell" severity="warning" text rounded aria-label="Notification" />
|
|
|
|
<Button icon="pi pi-heart" severity="help" text rounded aria-label="Favorite" />
|
2023-10-15 09:38:39 +00:00
|
|
|
<Button icon="pi pi-times" severity="danger" text rounded aria-label="Cancel" />
|
|
|
|
`,
|
2023-09-22 12:54:14 +00:00
|
|
|
options: `
|
|
|
|
<template>
|
2023-02-28 08:29:30 +00:00
|
|
|
<div class="card">
|
|
|
|
<div class="flex flex-wrap justify-content-center gap-3 mb-4">
|
|
|
|
<Button icon="pi pi-check" aria-label="Filter" />
|
2023-03-03 07:04:07 +00:00
|
|
|
<Button icon="pi pi-bookmark" severity="secondary" aria-label="Bookmark" />
|
|
|
|
<Button icon="pi pi-search" severity="success" aria-label="Search" />
|
|
|
|
<Button icon="pi pi-user" severity="info" aria-label="User" />
|
|
|
|
<Button icon="pi pi-bell" severity="warning" aria-label="Notification" />
|
|
|
|
<Button icon="pi pi-heart" severity="help" aria-label="Favorite" />
|
|
|
|
<Button icon="pi pi-times" severity="danger" aria-label="Cancel" />
|
2023-02-28 08:29:30 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="flex flex-wrap justify-content-center gap-3 mb-4">
|
2023-03-03 07:04:07 +00:00
|
|
|
<Button icon="pi pi-check" rounded aria-label="Filter" />
|
|
|
|
<Button icon="pi pi-bookmark" severity="secondary" rounded aria-label="Bookmark" />
|
|
|
|
<Button icon="pi pi-search" severity="success" rounded aria-label="Search" />
|
|
|
|
<Button icon="pi pi-user" severity="info" rounded aria-label="User" />
|
|
|
|
<Button icon="pi pi-bell" severity="warning" rounded aria-label="Notification" />
|
|
|
|
<Button icon="pi pi-heart" severity="help" rounded aria-label="Favorite" />
|
|
|
|
<Button icon="pi pi-times" severity="danger" rounded aria-label="Cancel" />
|
2023-02-28 08:29:30 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="flex flex-wrap justify-content-center gap-3 mb-4">
|
2023-03-03 07:04:07 +00:00
|
|
|
<Button icon="pi pi-check" rounded outlined aria-label="Filter" />
|
|
|
|
<Button icon="pi pi-bookmark" severity="secondary" rounded outlined aria-label="Bookmark" />
|
|
|
|
<Button icon="pi pi-search" severity="success" rounded outlined aria-label="Search" />
|
|
|
|
<Button icon="pi pi-user" severity="info" rounded outlined aria-label="User" />
|
|
|
|
<Button icon="pi pi-bell" severity="warning" rounded outlined aria-label="Notification" />
|
|
|
|
<Button icon="pi pi-heart" severity="help" rounded outlined aria-label="Favorite" />
|
|
|
|
<Button icon="pi pi-times" severity="danger" rounded outlined aria-label="Cancel" />
|
2023-02-28 08:29:30 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="flex flex-wrap justify-content-center gap-3 mb-4">
|
2023-03-03 07:04:07 +00:00
|
|
|
<Button icon="pi pi-check" text raised rounded aria-label="Filter" />
|
|
|
|
<Button icon="pi pi-bookmark" severity="secondary" text raised rounded aria-label="Bookmark" />
|
|
|
|
<Button icon="pi pi-search" severity="success" text raised rounded aria-label="Search" />
|
|
|
|
<Button icon="pi pi-user" severity="info" text raised rounded aria-label="User" />
|
|
|
|
<Button icon="pi pi-bell" severity="warning" text raised rounded aria-label="Notification" />
|
|
|
|
<Button icon="pi pi-heart" severity="help" text raised rounded aria-label="Favorite" />
|
|
|
|
<Button icon="pi pi-times" severity="danger" text raised rounded aria-label="Cancel" />
|
2023-02-28 08:29:30 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="flex flex-wrap justify-content-center gap-3">
|
2023-03-03 07:04:07 +00:00
|
|
|
<Button icon="pi pi-check" text rounded aria-label="Filter" />
|
|
|
|
<Button icon="pi pi-bookmark" severity="secondary" text rounded aria-label="Bookmark" />
|
|
|
|
<Button icon="pi pi-search" severity="success" text rounded aria-label="Search" />
|
|
|
|
<Button icon="pi pi-user" severity="info" text rounded aria-label="User" />
|
|
|
|
<Button icon="pi pi-bell" severity="warning" text rounded aria-label="Notification" />
|
|
|
|
<Button icon="pi pi-heart" severity="help" text rounded aria-label="Favorite" />
|
|
|
|
<Button icon="pi pi-times" severity="danger" text rounded aria-label="Cancel" />
|
2023-02-28 08:29:30 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2023-10-15 09:38:39 +00:00
|
|
|
<\/script>
|
|
|
|
`,
|
2023-09-22 12:54:14 +00:00
|
|
|
composition: `
|
|
|
|
<template>
|
2023-02-28 08:29:30 +00:00
|
|
|
<div class="card">
|
|
|
|
<div class="flex flex-wrap justify-content-center gap-3 mb-4">
|
|
|
|
<Button icon="pi pi-check" aria-label="Filter" />
|
2023-03-03 07:04:07 +00:00
|
|
|
<Button icon="pi pi-bookmark" severity="secondary" aria-label="Bookmark" />
|
|
|
|
<Button icon="pi pi-search" severity="success" aria-label="Search" />
|
|
|
|
<Button icon="pi pi-user" severity="info" aria-label="User" />
|
|
|
|
<Button icon="pi pi-bell" severity="warning" aria-label="Notification" />
|
|
|
|
<Button icon="pi pi-heart" severity="help" aria-label="Favorite" />
|
|
|
|
<Button icon="pi pi-times" severity="danger" aria-label="Cancel" />
|
2023-02-28 08:29:30 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="flex flex-wrap justify-content-center gap-3 mb-4">
|
2023-03-03 07:04:07 +00:00
|
|
|
<Button icon="pi pi-check" rounded aria-label="Filter" />
|
|
|
|
<Button icon="pi pi-bookmark" severity="secondary" rounded aria-label="Bookmark" />
|
|
|
|
<Button icon="pi pi-search" severity="success" rounded aria-label="Search" />
|
|
|
|
<Button icon="pi pi-user" severity="info" rounded aria-label="User" />
|
|
|
|
<Button icon="pi pi-bell" severity="warning" rounded aria-label="Notification" />
|
|
|
|
<Button icon="pi pi-heart" severity="help" rounded aria-label="Favorite" />
|
|
|
|
<Button icon="pi pi-times" severity="danger" rounded aria-label="Cancel" />
|
2023-02-28 08:29:30 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="flex flex-wrap justify-content-center gap-3 mb-4">
|
2023-03-03 07:04:07 +00:00
|
|
|
<Button icon="pi pi-check" rounded outlined aria-label="Filter" />
|
|
|
|
<Button icon="pi pi-bookmark" severity="secondary" rounded outlined aria-label="Bookmark" />
|
|
|
|
<Button icon="pi pi-search" severity="success" rounded outlined aria-label="Search" />
|
|
|
|
<Button icon="pi pi-user" severity="info" rounded outlined aria-label="User" />
|
|
|
|
<Button icon="pi pi-bell" severity="warning" rounded outlined aria-label="Notification" />
|
|
|
|
<Button icon="pi pi-heart" severity="help" rounded outlined aria-label="Favorite" />
|
|
|
|
<Button icon="pi pi-times" severity="danger" rounded outlined aria-label="Cancel" />
|
2023-02-28 08:29:30 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="flex flex-wrap justify-content-center gap-3 mb-4">
|
2023-03-03 07:04:07 +00:00
|
|
|
<Button icon="pi pi-check" text raised rounded aria-label="Filter" />
|
|
|
|
<Button icon="pi pi-bookmark" severity="secondary" text raised rounded aria-label="Bookmark" />
|
|
|
|
<Button icon="pi pi-search" severity="success" text raised rounded aria-label="Search" />
|
|
|
|
<Button icon="pi pi-user" severity="info" text raised rounded aria-label="User" />
|
|
|
|
<Button icon="pi pi-bell" severity="warning" text raised rounded aria-label="Notification" />
|
|
|
|
<Button icon="pi pi-heart" severity="help" text raised rounded aria-label="Favorite" />
|
|
|
|
<Button icon="pi pi-times" severity="danger" text raised rounded aria-label="Cancel" />
|
2023-02-28 08:29:30 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="flex flex-wrap justify-content-center gap-3">
|
2023-03-03 07:04:07 +00:00
|
|
|
<Button icon="pi pi-check" text rounded aria-label="Filter" />
|
|
|
|
<Button icon="pi pi-bookmark" severity="secondary" text rounded aria-label="Bookmark" />
|
|
|
|
<Button icon="pi pi-search" severity="success" text rounded aria-label="Search" />
|
|
|
|
<Button icon="pi pi-user" severity="info" text rounded aria-label="User" />
|
|
|
|
<Button icon="pi pi-bell" severity="warning" text rounded aria-label="Notification" />
|
|
|
|
<Button icon="pi pi-heart" severity="help" text rounded aria-label="Favorite" />
|
|
|
|
<Button icon="pi pi-times" severity="danger" text rounded aria-label="Cancel" />
|
2023-02-28 08:29:30 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup>
|
2023-10-15 09:38:39 +00:00
|
|
|
<\/script>
|
|
|
|
`
|
2023-02-28 08:29:30 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|