diff --git a/src/components/contextMenu.vue b/src/components/contextMenu.vue index 7d94e7a5..c33742a2 100644 --- a/src/components/contextMenu.vue +++ b/src/components/contextMenu.vue @@ -1,5 +1,5 @@ @@ -19,55 +25,6 @@ import useContextStore from "@/stores/context.js"; const context = useContextStore(); - -// const props = defineProps({ -// context: { -// type: Object, -// required: true, -// }, -// }); - -const options = [ - { - label: "Item 1 and another one of my long stories", - icon: "folder", - action: () => { - console.log("Item 1 clicked"); - }, - }, - { - label: "Item 2", - icon: "folder", - - action: () => { - console.log("Item 2 clicked"); - }, - }, - { - label: "Item 3", - icon: "folder", - action: () => { - console.log("Item 3 clicked"); - }, - }, - { - label: "Item 4", - icon: "folder", - - action: () => { - console.log("Item 4 clicked"); - }, - }, - { - label: "Item 5", - icon: "folder", - - action: () => { - console.log("Item 5 clicked"); - }, - }, -]; -