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" :border="true"
:content="displayValue" :content="displayValue"
:language="viewLanguage" :language="viewLanguage"
:keyPath="viewAs.field" :key-path="viewAs.field"
class="flex-item-expand" class="flex-item-expand"
@input="onInput" @input="onInput"
@reset="onInput" @reset="onInput"

View File

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

View File

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