2023-02-28 08:29:30 +00:00
|
|
|
<template>
|
|
|
|
<DocSectionText v-bind="$attrs">
|
|
|
|
<p>ContextMenu requires a collection of menuitems as its <i>model</i> and the <i>show</i> method needs to be called explicity using the <i>contextmenu</i> event of the target to display the menu.</p>
|
|
|
|
</DocSectionText>
|
|
|
|
<div class="card flex md:justify-content-center">
|
|
|
|
<img alt="Logo" src="https://primefaces.org/cdn/primevue/images/nature/nature3.jpg" class="w-full md:w-auto" @contextmenu="onImageRightClick" aria-haspopup="true" />
|
|
|
|
<ContextMenu ref="menu" :model="items" />
|
|
|
|
</div>
|
|
|
|
<DocSectionCode :code="code" />
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
items: [
|
2023-03-28 08:25:57 +00:00
|
|
|
{ label: 'View', icon: 'pi pi-fw pi-search' },
|
|
|
|
{ label: 'Delete', icon: 'pi pi-fw pi-trash' }
|
2023-02-28 08:29:30 +00:00
|
|
|
],
|
|
|
|
code: {
|
2023-09-22 12:54:14 +00:00
|
|
|
basic: `
|
|
|
|
<img alt="Logo" src="/images/nature/nature3.jpg" class="w-full md:w-auto" @contextmenu="onImageRightClick" aria-haspopup="true" />
|
2023-02-28 08:29:30 +00:00
|
|
|
<ContextMenu ref="menu" :model="items" />`,
|
2023-09-22 12:54:14 +00:00
|
|
|
options: `
|
|
|
|
<template>
|
2023-02-28 08:29:30 +00:00
|
|
|
<div class="card flex md:justify-content-center">
|
|
|
|
<img alt="Logo" src="https://primefaces.org/cdn/primevue/images/nature/nature3.jpg" @contextmenu="onImageRightClick" class="w-full md:w-auto" aria-haspopup="true" />
|
|
|
|
<ContextMenu ref="menu" :model="items" />
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
items: [
|
2023-03-28 08:25:57 +00:00
|
|
|
{ label: 'View', icon: 'pi pi-fw pi-search' },
|
|
|
|
{ label: 'Delete', icon: 'pi pi-fw pi-trash' }
|
2023-02-28 08:29:30 +00:00
|
|
|
]
|
|
|
|
};
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
onImageRightClick(event) {
|
|
|
|
this.$refs.menu.show(event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
<\/script>`,
|
2023-09-22 12:54:14 +00:00
|
|
|
composition: `
|
|
|
|
<template>
|
2023-03-28 08:25:57 +00:00
|
|
|
<div class="card">
|
2023-02-28 08:29:30 +00:00
|
|
|
<img alt="Logo" src="https://primefaces.org/cdn/primevue/images/nature/nature3.jpg" @contextmenu="onImageRightClick" class="w-full md:w-auto" aria-haspopup="true" />
|
|
|
|
<ContextMenu ref="menu" :model="items" />
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup>
|
|
|
|
import { ref } from 'vue';
|
|
|
|
|
|
|
|
const menu = ref();
|
|
|
|
const items = ref([
|
2023-03-28 08:25:57 +00:00
|
|
|
{ label: 'View', icon: 'pi pi-fw pi-search' },
|
|
|
|
{ label: 'Delete', icon: 'pi pi-fw pi-trash' }
|
2023-02-28 08:29:30 +00:00
|
|
|
]);
|
|
|
|
|
|
|
|
const onImageRightClick = (event) => {
|
|
|
|
menu.value.show(event);
|
|
|
|
};
|
|
|
|
|
|
|
|
<\/script>`
|
|
|
|
}
|
|
|
|
};
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
onImageRightClick(event) {
|
|
|
|
this.$refs.menu.show(event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|