/platform-library-javascript-vueKeyValueInput

Vuetify-based component that allows users to input a simple key/value map.

Primary LanguageJavaScriptMIT LicenseMIT

vue-key-value-input

CircleCI codecov.io npmjs.org

Vuetify-based component that allows users to input a simple key/value map. Values can only be strings.

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>