diff --git a/src/components/device/device-card/components/current-diag/device-header-card.vue b/src/components/device/device-card/components/current-diag/device-header-card.vue index 39af8c6..6827120 100644 --- a/src/components/device/device-card/components/current-diag/device-header-card.vue +++ b/src/components/device/device-card/components/current-diag/device-header-card.vue @@ -14,6 +14,10 @@ const props = defineProps<{ station: Station; }>(); +defineSlots<{ + 'append-info': () => any; +}>(); + const { ndmDevice, station } = toRefs(props); const type = computed(() => { @@ -150,6 +154,9 @@ onBeforeUnmount(() => { +