0.1.7 • Published 5 years ago

vue-auto-complete-input v0.1.7

Weekly downloads
7
License
MIT
Repository
github
Last release
5 years ago

vue-auto-complete-input

Install

$ npm install --save vue-auto-complete-input

Register the component : public, or a similar entry point, just import your library using:

import "vue-auto-complete-input";
import 'vue-auto-complete-input/dist/vue-auto-complete-input.css';

How to use :

<label>Lable
    <vue-auto-complete-input
            :name="'description'"
            :options = "[{'id':'', 'text' : ''}]"
            v-model="input.description">
    </vue-auto-complete-input>
</label>

props:

NameTypeDescription
optionArray of objectOption list
nameStringtextarea name attribute

v-validate:

<label>Lable
    <vue-auto-complete-input
            :name="'description'"
            v-validate="'required'"
            :class="{'input': true, 'error-border': errors.has('description')}"
            :options = "[{'id':'', 'text' : ''}]"
            v-model="input.description">
    </vue-auto-complete-input>
    <span v-show="errors.has('description')" class="error-font">Error Text!</span>
</label>

Customize configuration

See Configuration Reference.

0.1.7

5 years ago

0.1.612

5 years ago

0.1.611

5 years ago

0.1.61

5 years ago

0.1.6

5 years ago

0.1.52

5 years ago

0.1.51

5 years ago

0.1.5

5 years ago

0.1.49

5 years ago

0.1.48

5 years ago

0.1.46

5 years ago

0.1.45

5 years ago

0.1.43

5 years ago

0.1.42

5 years ago

0.1.41

5 years ago

0.1.4

5 years ago

0.1.3593

5 years ago

0.1.3592

5 years ago

0.1.3591

5 years ago

0.1.359

5 years ago

0.1.358

5 years ago

0.1.357

5 years ago

0.1.356

5 years ago

0.1.355

5 years ago

0.1.352

5 years ago

0.1.351

5 years ago

0.1.35

5 years ago

0.1.34

5 years ago

0.1.33

5 years ago

0.1.32

5 years ago

0.1.31

5 years ago

0.1.3

5 years ago

0.1.2

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago