From 1283ea08f5cf2403dc0632b92e2afb6245d40a6d Mon Sep 17 00:00:00 2001 From: Daria Golova Date: Wed, 18 Jan 2023 16:37:56 +0300 Subject: [PATCH] =?UTF-8?q?WIP=20=D0=A4=D0=BE=D1=80=D0=BC=D0=B0=20=D1=81?= =?UTF-8?q?=D0=BE=D0=B7=D0=B4=D0=B0=D0=BD=D0=B8=D1=8F=20=D0=BA=D0=BB=D0=B8?= =?UTF-8?q?=D0=B5=D0=BD=D1=82=D0=B0=20=D0=BF=D0=B5=D1=80=D0=B5=D0=B4=D0=B5?= =?UTF-8?q?=D0=BB=D0=B0=D0=BD=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/TheSidebar.vue | 8 +- src/components/base/BaseClientFormCreate.vue | 93 +++++++++---------- .../components/FormCreateAddresses.vue | 10 +- .../components/FormCreateBasicInfo.vue | 11 +-- .../FormCreateIdentityDocuments.vue | 12 +-- 5 files changed, 61 insertions(+), 73 deletions(-) diff --git a/src/components/TheSidebar.vue b/src/components/TheSidebar.vue index 87f954c..b509beb 100644 --- a/src/components/TheSidebar.vue +++ b/src/components/TheSidebar.vue @@ -3,7 +3,7 @@ :style="{borderTopRightRadius: this.currenPageBorder ? '0px' : '4px'}" ) .flex.flex-col.gap-y-6 - the-button-sidebar( + base-button-sidebar( v-for="button in pageSettings.filter((el) => el.id !== 'settings')", :path="button.path", :id="button.id", @@ -12,7 +12,7 @@ ) q-icon(:name="`app:${button.icon}`", size="36px") .flex.text-4xl.flex-col.gap-y-6 - the-button-sidebar( + base-button-sidebar( :path="getSettings.path", :id="getSettings.id", :active="getSettings.active", @@ -22,11 +22,11 @@