Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ import type { NuxtDevToolsInspectorProps } from './Props'
import { onClickOutside, useDraggable } from '@vueuse/core'
import { computed, nextTick, ref, useTemplateRef, watch } from 'vue'

defineOptions({
inheritAttrs: false,
})
const { props } = defineProps<{ props: NuxtDevToolsInspectorProps }>()
const emit = defineEmits<{
(e: 'close'): void
Expand Down Expand Up @@ -227,6 +230,7 @@ async function copyAgentInfo() {
isDragging ? 'transition-none' : 'transition-opacity',
props.matched ? 'op100' : 'op0 pointer-events-none',
]"
v-bind="$attrs"
>
<!-- <div
class="pointer-events-none absolute inset-0 z-10 transition-opacity duration-300"
Expand Down