vue-key-value-input
v1.2.2
Published
[](https://circleci.com/gh/Ouest-France/platform-library-javascript-vueKeyValueInput) [![codecov.io]
Readme
vue-key-value-input
Vuetify-based component that allows users to input a simple key/value map. Values can only be strings.
Documentation
Usage
<template>
<key-value-input v-model="example" />
</template>
<script>
import KeyValueInput from 'vue-key-value-input';
export default {
name: 'Component',
components: { VueKeyValueInput },
data: () => ({
example: {}
})
}
</script>