21 lines
340 B
Vue
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>
|