mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-05 06:08:46 -05:00
14 lines
207 B
Vue
14 lines
207 B
Vue
<template>
|
|
<li @click="$emit('click', $event)" role="presentation">
|
|
<slot />
|
|
</li>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "ContextMenuItem.vue",
|
|
}
|
|
</script>
|
|
|
|
<style scoped></style>
|