vue-h-select

0.1.8 • Public • Published

vue-h-select

npm version npm Build Status

Edge 12+, FF 36+, Chrome 49+, or use translation from ES2105 to ES5

Introduction

Under construction

Setup

npm install vue-h-select

Example

import smartSelect from 'vue-h-select';
 
export default {
  template: `
    <div>
      <smart-select :items="options" v-model="value" multiple>
    </div>
  `,
 
  components: {
    smartSelect
  },
 
  data() {
    return {
      value: 2,
      options: [
        {label: 'Opt 1', value: 1},
        {label: 'Opt 2', value: 2}
      ]
    };
  }
};

Dependencies (0)

    Dev Dependencies (7)

    Package Sidebar

    Install

    npm i vue-h-select

    Weekly Downloads

    3

    Version

    0.1.8

    License

    MIT

    Unpacked Size

    9.24 kB

    Total Files

    8

    Last publish

    Collaborators

    • alexander.zonov