{
"key1": "value1",
"key2": "value2"
}
vue
<template>
<JsonView :data="json" />
</template>
<script setup lang="ts">
const json = {
key1: 'value1',
key2: 'value2',
};
</script>
JSON形式でデータを表示します。
{
"key1": "value1",
"key2": "value2"
}
<template>
<JsonView :data="json" />
</template>
<script setup lang="ts">
const json = {
key1: 'value1',
key2: 'value2',
};
</script>