vue-key-value-input
v1.2.2
Published
[![CircleCI](https://img.shields.io/circleci/project/github/Ouest-France/platform-library-javascript-vueKeyValueInput.svg?logo=circleci&style=for-the-badge)](https://circleci.com/gh/Ouest-France/platform-library-javascript-vueKeyValueInput) [![codecov.io]
Downloads
361
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>