|
@@ -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;
|