Skip to content
On this page

Kv

何时使用

在需要使用对象或者JSON的键值对展示时,该组件能够很好地将其进行展示

代码演示

key1:
key2:
key3:

包括两种展示模式,json展示以及list展示

<template>
  <h-kv :value="outputValue" />
</template>

<script setup lang="ts">
import { ref } from 'vue';

const outputValue = ref({
  key1: 'He3',
  key2: 'Development',
  key3: 'Tool'
});
</script>

API

Props

属性说明类型默认值
value需要展示的对象Object
width宽度number
mode展示模式enumlist
disableModeSwitch是否禁用模式切换boolean

参数修改

result -> value

model -> mode

modelSwitch -> disableModeSwitch (注意这里是禁用)