Fix props name format, use kebab-case

This commit is contained in:
raojinlin 2024-02-23 10:33:23 +08:00
parent 029b227cde
commit 565f04d49d
3 changed files with 3 additions and 3 deletions

View File

@ -175,7 +175,7 @@ const onSave = () => {
:border="true"
:content="displayValue"
:language="viewLanguage"
:keyPath="viewAs.field"
:key-path="viewAs.field"
class="flex-item-expand"
@input="onInput"
@reset="onInput"

View File

@ -149,7 +149,7 @@ defineExpose({
v-show="!props.loading"
:content="displayValue"
:loading="props.loading"
:keyPath="props.keyPath"
:key-path="props.keyPath"
class="flex-item-expand"
language="json"
style="height: 100%"

View File

@ -204,7 +204,7 @@ defineExpose({
:content="displayValue"
:language="viewLanguage"
:loading="props.loading"
:keyPath="props.keyPath"
:key-path="props.keyPath"
class="flex-item-expand"
style="height: 100%"
@input="onInput"