Skip to content

Commit

Permalink
Merge pull request #5467 from metanas/documentation
Browse files Browse the repository at this point in the history
doc(splitbutton): fix composition API composable use
  • Loading branch information
tugcekucukoglu authored Mar 25, 2024
2 parents 7fbe02c + 4fa7151 commit d315d0f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/splitbutton/BasicDoc.vue
Original file line number Diff line number Diff line change
Expand Up @@ -96,13 +96,13 @@ const items = [
{
label: 'Update',
command: () => {
this.$toast.add({ severity: 'success', summary: 'Updated', detail: 'Data Updated', life: 3000 });
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 });
toast.add({ severity: 'warn', summary: 'Delete', detail: 'Data Deleted', life: 3000 });
}
},
{
Expand Down

0 comments on commit d315d0f

Please sign in to comment.