From e8ac9397951291f3c69f48b6f34fefd5870c1926 Mon Sep 17 00:00:00 2001 From: yangsy Date: Mon, 22 Dec 2025 15:17:51 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E8=AE=BE=E5=A4=87header=E5=8D=A1?= =?UTF-8?q?=E7=89=87=E6=B7=BB=E5=8A=A0=20append-info=20=E6=8F=92=E6=A7=BD?= =?UTF-8?q?=E4=BB=A5=E6=94=AF=E6=8C=81=E8=87=AA=E5=AE=9A=E4=B9=89=E5=BA=95?= =?UTF-8?q?=E9=83=A8=E5=86=85=E5=AE=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/current-diag/device-header-card.vue | 7 +++++++ 1 file changed, 7 insertions(+) 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(() => { +