We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdfbfac commit d5311d0Copy full SHA for d5311d0
adminforth/spa/src/components/ThreeDotsMenu.vue
@@ -107,6 +107,12 @@ const props = defineProps({
107
108
const emit = defineEmits(['startBulkAction']);
109
110
+function setComponentRef(el: ComponentPublicInstance | null, index: number) {
111
+ if (el) {
112
+ threeDotsDropdownItemsRefs.value[index] = el;
113
+ }
114
+}
115
+
116
async function handleActionClick(action: AdminForthActionInput, payload: any) {
117
adminforth.list.closeThreeDotsDropdown();
118
0 commit comments