Files
hoppscotch/components/lenses/HeadersRenderer.vue
2021-07-25 18:41:26 +05:30

21 lines
341 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>