primevue-mirror/apps/showcase/doc/splitbutton/IconsDoc.vue

147 lines
4.1 KiB
Vue
Raw Permalink Normal View History

2024-02-03 08:48:01 +00:00
<template>
<DocSectionText v-bind="$attrs">
<p>The buttons and menuitems have support to display icons.</p>
</DocSectionText>
2024-05-20 12:14:38 +00:00
<div class="card flex justify-center">
<SplitButton label="Save" icon="pi pi-check" dropdownIcon="pi pi-cog" @click="save" :model="items" />
2024-02-03 08:48:01 +00:00
</div>
<DocSectionCode :code="code" />
</template>
<script>
export default {
data() {
return {
items: [
{
label: 'Update',
icon: 'pi pi-refresh',
command: () => {
this.$toast.add({ severity: 'success', summary: 'Updated', detail: 'Data Updated', life: 3000 });
}
},
{
label: 'Delete',
icon: 'pi pi-times',
command: () => {
this.$toast.add({ severity: 'warn', summary: 'Delete', detail: 'Data Deleted', life: 3000 });
}
},
{
2024-09-26 08:19:50 +00:00
separator: true
},
{
label: 'Quit',
icon: 'pi pi-power-off',
2024-02-03 08:48:01 +00:00
command: () => {
window.location.href = 'https://vuejs.org/';
}
2024-09-26 08:19:50 +00:00
}
2024-02-03 08:48:01 +00:00
],
code: {
basic: `
2024-04-30 08:04:41 +00:00
<SplitButton label="Save" icon="pi pi-check" dropdownIcon="pi pi-cog" @click="save" :model="items" />
2024-02-03 08:48:01 +00:00
`,
options: `
<template>
2024-05-20 12:14:38 +00:00
<div class="card flex justify-center">
2024-02-03 08:48:01 +00:00
<Toast />
2024-04-30 08:04:41 +00:00
<SplitButton label="Save" icon="pi pi-check" dropdownIcon="pi pi-cog" @click="save" :model="items" />
2024-02-03 08:48:01 +00:00
</div>
</template>
<script>
export default {
data() {
return {
items: [
{
label: 'Update',
icon: 'pi pi-refresh',
command: () => {
this.$toast.add({ severity: 'success', summary: 'Updated', detail: 'Data Updated', life: 3000 });
}
},
{
label: 'Delete',
icon: 'pi pi-times',
command: () => {
this.$toast.add({ severity: 'warn', summary: 'Delete', detail: 'Data Deleted', life: 3000 });
}
},
{
2024-09-26 08:19:50 +00:00
separator: true
},
{
label: 'Quit',
icon: 'pi pi-power-off',
2024-02-03 08:48:01 +00:00
command: () => {
window.location.href = 'https://vuejs.org/';
}
2024-09-26 08:19:50 +00:00
}
2024-02-03 08:48:01 +00:00
]
};
},
methods: {
save() {
this.$toast.add({ severity: 'success', summary: 'Success', detail: 'Data Saved', life: 3000 });
}
}
};
<\/script>
`,
composition: `
<template>
2024-05-20 12:14:38 +00:00
<div class="card flex justify-center">
2024-02-03 08:48:01 +00:00
<Toast />
2024-04-30 08:04:41 +00:00
<SplitButton label="Save" icon="pi pi-check" dropdownIcon="pi pi-cog" @click="save" :model="items" />
2024-02-03 08:48:01 +00:00
</div>
</template>
<script setup>
import { useToast } from "primevue/usetoast";
const toast = useToast();
const items = [
{
label: 'Update',
icon: 'pi pi-refresh',
command: () => {
2024-09-26 08:19:50 +00:00
this.$toast.add({ severity: 'success', summary: 'Updated', detail: 'Data Updated', life: 3000 });
2024-02-03 08:48:01 +00:00
}
},
{
label: 'Delete',
icon: 'pi pi-times',
command: () => {
2024-09-26 08:19:50 +00:00
this.$toast.add({ severity: 'warn', summary: 'Delete', detail: 'Data Deleted', life: 3000 });
2024-02-03 08:48:01 +00:00
}
},
{
2024-09-26 08:19:50 +00:00
separator: true
},
{
label: 'Quit',
icon: 'pi pi-power-off',
2024-02-03 08:48:01 +00:00
command: () => {
window.location.href = 'https://vuejs.org/';
}
2024-09-26 08:19:50 +00:00
}
2024-02-03 08:48:01 +00:00
];
const save = () => {
toast.add({ severity: 'success', summary: 'Success', detail: 'Data Saved', life: 3000 });
};
<\/script>
`
}
};
},
methods: {
save() {
this.$toast.add({ severity: 'success', summary: 'Success', detail: 'Data Saved', life: 3000 });
}
}
};
</script>