Merge pull request #190 from Frappet/feat/4-property-managment
Some checks failed
Spell Check / Spell Check with Typos (push) Failing after 12s

feat: property managment
This commit is contained in:
Methapon Metanipat 2025-03-13 09:09:25 +07:00 committed by GitHub
commit 169af44eda
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
15 changed files with 1548 additions and 7 deletions

View file

@ -164,12 +164,15 @@ defineEmits<{
class="row items-center q-pb-sm"
>
<article class="col-5">
{{ i + 1 }} {{ optionStore.mapOption(prop.fieldName) }}
{{ i + 1 }}
{{ optionStore.mapOption(prop.fieldName, 'propertiesField') }}
</article>
<PropertiesToInput
:readonly="!state.isEdit || readonlyField.includes(prop.fieldName)"
:prop="prop"
:placeholder="optionStore.mapOption(prop.fieldName)"
:placeholder="
optionStore.mapOption(prop.fieldName, 'propertiesField')
"
v-model="formData[prop.fieldName]"
/>
</span>