Browse Source

rem. unused

Martin Kunz 1 year ago
parent
commit
92b0172154
1 changed files with 1 additions and 3 deletions
  1. 1 3
      src/components/TheContextMenu.vue

+ 1 - 3
src/components/TheContextMenu.vue

@@ -1,14 +1,12 @@
 <script setup lang="ts">
-import { NodeId, coerceNodeId } from '@/ua/NodeId';
+import { coerceNodeId } from '@/ua/NodeId';
 import { UABaseNode } from '@/ua/UABaseNode';
 import { useStore } from '@/util/store';
-import { storeToRefs } from 'pinia';
 import { ref, reactive, onMounted, onUnmounted, computed, type CSSProperties } from 'vue';
 
 const isVisible = ref(false);
 const menuPosition = reactive({ top: "0px", left: "0px" });
 const store = useStore();
-const { selectedNode } = storeToRefs(store);
 
 const openMenu = (event: any) => {
     isVisible.value = true;