add cell field type

This commit is contained in:
Alex Turchyn
2023-06-27 00:57:29 +03:00
parent 419ede5b1d
commit 897df83633
14 changed files with 188 additions and 47 deletions
+4 -4
View File
@@ -7,7 +7,7 @@
:number="index"
:areas="areasIndex[index]"
:is-drag="isDrag"
:is-draw="isDraw"
:draw-field="drawField"
:selected-submitter="selectedSubmitter"
:image="image"
@drop-field="$emit('drop-field', {...$event, attachment_uuid: document.uuid })"
@@ -38,10 +38,10 @@ export default {
type: Object,
required: true
},
isDraw: {
type: Boolean,
drawField: {
type: Object,
required: false,
default: false
default: null
},
isDrag: {
type: Boolean,