add input mode

This commit is contained in:
Pete Matsyburka
2024-07-16 19:01:44 +03:00
parent d1ec8c6837
commit cdaadbab20
4 changed files with 35 additions and 3 deletions
@@ -4,6 +4,7 @@
v-for="(image, index) in sortedPreviewImages"
:key="image.id"
:ref="setPageRefs"
:input-mode="inputMode"
:number="index"
:editable="editable"
:areas="areasIndex[index]"
@@ -36,6 +37,11 @@ export default {
type: Object,
required: true
},
inputMode: {
type: Boolean,
required: false,
default: false
},
areasIndex: {
type: Object,
required: false,