mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 08:52:34 +00:00
Updated menu demos
This commit is contained in:
parent
f5e1c67c07
commit
e2accc3d61
7 changed files with 488 additions and 340 deletions
105
doc/menu/CommandDoc.vue
Normal file
105
doc/menu/CommandDoc.vue
Normal file
|
@ -0,0 +1,105 @@
|
|||
<template>
|
||||
<DocSectionText v-bind="$attrs">
|
||||
<p>The <i>command</i> property defines the callback to run when an item is activated by click or a key event.</p>
|
||||
</DocSectionText>
|
||||
<div class="card flex justify-content-center">
|
||||
<Menu :model="items" />
|
||||
</div>
|
||||
<DocSectionCode :code="code" />
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
items: [
|
||||
{
|
||||
label: 'New',
|
||||
icon: 'pi pi-plus',
|
||||
command: () => {
|
||||
this.$toast.add({ severity: 'success', summary: 'Success', detail: 'File created', life: 3000 });
|
||||
}
|
||||
},
|
||||
{
|
||||
label: 'Search',
|
||||
icon: 'pi pi-search',
|
||||
command: () => {
|
||||
this.$toast.add({ severity: 'warn', summary: 'Search Completed', detail: 'No results found', life: 3000 });
|
||||
}
|
||||
}
|
||||
],
|
||||
code: {
|
||||
basic: `
|
||||
<Menu :model="items" />
|
||||
<Toast />
|
||||
`,
|
||||
options: `
|
||||
<template>
|
||||
<div class="card flex justify-content-center">
|
||||
<Menu :model="items" />
|
||||
<Toast />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
items: [
|
||||
{
|
||||
label: 'New',
|
||||
icon: 'pi pi-plus',
|
||||
command: () => {
|
||||
this.$toast.add({ severity: 'success', summary: 'Success', detail: 'File created', life: 3000 });
|
||||
}
|
||||
},
|
||||
{
|
||||
label: 'Search',
|
||||
icon: 'pi pi-search',
|
||||
command: () => {
|
||||
this.$toast.add({ severity: 'warn', summary: 'Search Completed', detail: 'No results found', life: 3000 });
|
||||
}
|
||||
}
|
||||
]
|
||||
};
|
||||
}
|
||||
};
|
||||
<\/script>
|
||||
`,
|
||||
composition: `
|
||||
<template>
|
||||
<div class="card flex justify-content-center">
|
||||
<Menu :model="items" />
|
||||
<Toast />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { ref } from "vue";
|
||||
import { useToast } from "primevue/usetoast";
|
||||
|
||||
const toast = useToast();
|
||||
|
||||
const items = ref([
|
||||
{
|
||||
label: 'New',
|
||||
icon: 'pi pi-plus',
|
||||
command: () => {
|
||||
toast.add({ severity: 'success', summary: 'Success', detail: 'File created', life: 3000 });
|
||||
}
|
||||
},
|
||||
{
|
||||
label: 'Search',
|
||||
icon: 'pi pi-search',
|
||||
command: () => {
|
||||
toast.add({ severity: 'warn', summary: 'Search Completed', detail: 'No results found', life: 3000 });
|
||||
}
|
||||
}
|
||||
]);
|
||||
<\/script>
|
||||
`
|
||||
}
|
||||
};
|
||||
}
|
||||
};
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue