Files
hoppscotch/components/lenses/HeadersRenderer.vue
2021-06-25 23:44:27 +00:00

21 lines
340 B
Vue

<template>
<div>
<p v-for="(value, key) in headers" :key="key">
<input
:value="`${key} → ${value}`"
:name="key"
class="input bg-transparent"
readonly
/>
</p>
</div>
</template>
<script>
export default {
props: {
headers: { type: Object, default: () => {} },
},
}
</script>