WIP Сделала обертку индексных форм

This commit is contained in:
Daria Golova
2023-05-12 18:29:49 +03:00
parent 51d1982fe9
commit 90d8710100
3 changed files with 115 additions and 4 deletions

View File

@@ -18,7 +18,7 @@
q-icon(name="app:basket" size="20")
span.text-smm.font-medium {{ titleDelete }}
slot
.flex.h-fit.w-fit.gap-2(v-if="isEdit")
.flex.h-fit.w-fit.gap-2(v-if="isEdit && buttonsPresence")
q-btn(
color="primary",
outline,
@@ -82,6 +82,10 @@ export default {
type: Boolean,
default: false,
},
buttonsPresence: {
type: Boolean,
default: true,
},
},
};
</script>