From 5f3e8eccffb88e653b4f9313ee747c2a10c27d04 Mon Sep 17 00:00:00 2001 From: Masahiko Shin Date: Fri, 5 Sep 2025 16:14:03 +0900 Subject: [PATCH] =?UTF-8?q?fix(protectedlink):=20href=E3=81=AF=E3=82=84?= =?UTF-8?q?=E3=81=AF=E3=82=8Aundefined=E8=A8=B1=E5=AE=B9=E3=81=A7=E3=82=88?= =?UTF-8?q?=E3=81=8B=E3=81=A3=E3=81=9F=E3=81=9F=E3=82=81=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit リンクを無効化したい時にundefinedを付与するような使い方をしていたため --- src/components/ProtectedLink/ProtectedLink.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ProtectedLink/ProtectedLink.vue b/src/components/ProtectedLink/ProtectedLink.vue index 0fb9c31..5347cd7 100644 --- a/src/components/ProtectedLink/ProtectedLink.vue +++ b/src/components/ProtectedLink/ProtectedLink.vue @@ -34,7 +34,7 @@ const props = defineProps({ } return true }, - required: true, + default: undefined, }, force: { type: Boolean,