From 463b9402793793e07a07c522f951918f3bfd6e6d Mon Sep 17 00:00:00 2001 From: Mamalizz Date: Tue, 18 Feb 2025 23:40:37 +0330 Subject: [PATCH] added border less --- .../components/profile/ProfileSection.vue | 26 ++++++++++++++----- 1 file changed, 19 insertions(+), 7 deletions(-) diff --git a/frontend/components/profile/ProfileSection.vue b/frontend/components/profile/ProfileSection.vue index b692176..1ed490d 100644 --- a/frontend/components/profile/ProfileSection.vue +++ b/frontend/components/profile/ProfileSection.vue @@ -3,24 +3,36 @@ type Props = { title: string; + borderLess?: boolean; }; // props -defineProps(); +withDefaults(defineProps(), { + borderLess: false, +});