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

137 lines
3.7 KiB
Vue
Raw Normal View History

2023-02-28 08:29:30 +00:00
<template>
<DocSectionText v-bind="$attrs">
<p>When <i>disabled</i> is present, the element cannot be edited and focused.</p>
</DocSectionText>
2024-05-20 12:14:38 +00:00
<div class="card flex justify-center">
2024-02-03 08:48:01 +00:00
<SplitButton label="Save" @click="save" :model="items" disabled />
2023-02-28 08:29:30 +00:00
</div>
<DocSectionCode :code="code" />
</template>
<script>
export default {
data() {
return {
items: [
{
label: 'Update',
command: () => {
this.$toast.add({ severity: 'success', summary: 'Updated', detail: 'Data Updated', life: 3000 });
}
},
{
label: 'Delete',
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',
2023-02-28 08:29:30 +00:00
command: () => {
window.location.href = 'https://vuejs.org/';
}
2024-09-26 08:19:50 +00:00
}
2023-02-28 08:29:30 +00:00
],
code: {
2023-09-22 12:54:14 +00:00
basic: `
2024-02-03 08:48:01 +00:00
<SplitButton label="Save" @click="save" :model="items" disabled />
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 justify-center">
2023-02-28 08:29:30 +00:00
<Toast />
2024-02-03 08:48:01 +00:00
<SplitButton label="Save" @click="save" :model="items" disabled />
2023-02-28 08:29:30 +00:00
</div>
</template>
<script>
export default {
data() {
return {
items: [
{
label: 'Update',
command: () => {
this.$toast.add({ severity: 'success', summary: 'Updated', detail: 'Data Updated', life: 3000 });
}
},
{
label: 'Delete',
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',
2023-02-28 08:29:30 +00:00
command: () => {
window.location.href = 'https://vuejs.org/';
}
2024-09-26 08:19:50 +00:00
}
2023-02-28 08:29:30 +00:00
]
};
},
methods: {
save() {
this.$toast.add({ severity: 'success', summary: 'Success', detail: 'Data Saved', life: 3000 });
}
}
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 justify-center">
2023-02-28 08:29:30 +00:00
<Toast />
2024-02-03 08:48:01 +00:00
<SplitButton label="Save" @click="save" :model="items" disabled />
2023-02-28 08:29:30 +00:00
</div>
</template>
<script setup>
import { useToast } from "primevue/usetoast";
const toast = useToast();
const items = [
{
label: 'Update',
command: () => {
2024-02-03 08:48:01 +00:00
this.$toast.add({ severity: 'success', summary: 'Updated', detail: 'Data Updated', life: 3000 });
2023-02-28 08:29:30 +00:00
}
},
{
label: 'Delete',
command: () => {
2024-02-03 08:48:01 +00:00
this.$toast.add({ severity: 'warn', summary: 'Delete', detail: 'Data Deleted', life: 3000 });
2023-02-28 08:29:30 +00:00
}
},
{
2024-09-26 08:19:50 +00:00
separator: true
},
{
label: 'Quit',
2023-02-28 08:29:30 +00:00
command: () => {
window.location.href = 'https://vuejs.org/';
}
2024-09-26 08:19:50 +00:00
}
2023-02-28 08:29:30 +00:00
];
const save = () => {
toast.add({ severity: 'success', summary: 'Success', detail: 'Data Saved', life: 3000 });
};
2023-10-15 09:38:39 +00:00
<\/script>
`
2023-02-28 08:29:30 +00:00
}
};
},
methods: {
save() {
this.$toast.add({ severity: 'success', summary: 'Success', detail: 'Data Saved', life: 3000 });
}
}
};
</script>