1.2.0 • Published 3 years ago

vue-hinted-input v1.2.0

Weekly downloads
-
License
-
Repository
github
Last release
3 years ago

vue-hinted-input

npm

Install

npm i vue-hinted-input

Usage

<template>
  <div id="app">
        <hinted-input
                :id="'input-id0'"
                :hint="'I am hint'"
                v-model="value0"
        ></hinted-input>
        <hinted-input
                :id="'input-id1'"
                :hint="'I am disabled'"
                :disabled="true"
                v-model="value1"
        ></hinted-input>
        <hinted-input
                :id="'input-id2'"
                :hint="'Type here for search'"
                :search="true"
                v-model="value2"
        ></hinted-input>
        <hinted-input
                :id="'input-id3'"
                :hint="'I am clearable'"
                :clearable="true"
                v-model="value3"
        ></hinted-input>
  </div>
</template>

<script>
import hintedInput from 'vue-hinted-input';

export default {
  name: 'App',
  components: {
    'hinted-input': hintedInput
  },
  data: {
    value0: '',
    value1: '',
    value2: '',
    value3: ''
  },
}
</script>

<style>
</style>
1.2.0

3 years ago

1.1.9

3 years ago

1.1.8

3 years ago

1.1.7

3 years ago

1.1.6

3 years ago

1.1.5

3 years ago

1.1.4

3 years ago

1.1.3

3 years ago

1.1.2

3 years ago

1.1.1

3 years ago

1.1.0

3 years ago