Initial Headers component

This commit is contained in:
Liyas Thomas
2020-06-23 15:29:01 +05:30
parent cfe2ce758b
commit efb1296ff2
4 changed files with 30 additions and 16 deletions

View File

@@ -0,0 +1,17 @@
<template>
<div>
<ul v-for="(value, key) in headers" :key="key">
<li>
<input :value="`${key} → ${value}`" :name="key" class="bg-color" readonly />
</li>
</ul>
</div>
</template>
<script>
export default {
props: {
headers: {},
},
}
</script>