Fix props name format, use kebab-case
This commit is contained in:
parent
029b227cde
commit
565f04d49d
|
@ -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"
|
||||
|
|
|
@ -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%"
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue