0.3.0 • Published 4 years ago

awesome-select v0.3.0

Weekly downloads
-
License
MIT
Repository
-
Last release
4 years ago

awesome-select

A vuejs wrapper for select

Installation

npm i -S awesome-select 

How to use?

You can import awesome-select like this

import AwesomeSelect from 'awesome-select'

and awesome-select css like this

@import '~awesome-select/awesome-select.css';

If you are using yarn. You can install like this

yarn add awesome-select

Also, awesome-select CDN available

<script src="https://cdn.jsdelivr.net/npm/awesome-select"></script>
<script src="https://unpkg.com/awesome-select"></script>

Usage

<template>
  <div>
    <h2>Basic Example</h2>
    <awesome-select
      placeholder="Select one"
      labelKey="label"
      valueKey="code"
      v-model="example_select"
      :options="options"/>
     
    {{ example_select }}
  </div>
</template>

<script>
import AwesomeSelect from 'awesome-select'

export default {
  name: 'Example',
  components: { AwesomeSelect },
  data () {
    return {
      options: [
        { 'label': 'Apple', code: 10 },
        { 'label': 'Google', code: 20 },
        { 'label': 'Microsoft', code: 30 },
      ]
    }
  }
}
</script>

<style scoped>
    @import '~awesome-select/awesome-select.css';

</style>

Properties

NameTypeDefaultDescription
placeholderStringSearchplaceholder may contains a string that will show as placeholder in dropdown
optionsArray[]options is an array of object which will create list of item in dropdown
labelKeyStringlabellabelKey used as the display text in dropdown. For example: if you want to show options array label as display text in dropdown the you need to use labelKey="label"
valueKeyStringcodevalueKey used as the display text in dropdown. For example: if you want to show options array code as value in dropdown the you need to use valueKey="code"
v-modelObjectnullv-model contains the selected object
0.3.0

4 years ago

0.2.0

4 years ago

0.1.1

4 years ago

0.1.0

4 years ago

1.1.2

6 years ago

1.1.1

6 years ago

1.1.0

6 years ago

1.0.9

6 years ago

1.0.8

6 years ago

1.0.7

6 years ago

1.0.6

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago