element/packages/select
2016-11-08 15:01:00 +08:00
..
src Locale: rename $t to t 2016-11-07 23:33:33 +08:00
_index.js Components: use es2015 export module, fixed #907 2016-11-08 15:01:00 +08:00
cooking.conf.js Support publish component packages 2016-10-17 12:14:10 +08:00
index.js Components: use es2015 export module, fixed #907 2016-11-08 15:01:00 +08:00
package.json fix package.json url 2016-11-06 12:26:14 +08:00
README.md Update externals (#641) 2016-10-25 21:35:41 +08:00

el-select

A el-select component for Vue.js.

dependencies

  • vue-clickoutside

Installation

npm i el-select -D

Usage

  import vue from 'Vue'

  // import component
  import Component from 'el-select'
  import 'el-select/lib/style.css'

  Vue.use(Component)

or

import {
  ElSelect,
  ElOption,
  ElOptionGroup
} from 'el-select'

Vue.component('el-select', ElSelect)
Vue.component('el-option', ElOption)
Vue.component('el-option-group', ElOptionGroup)

API

el-elect

参数 说明 类型 可选值 默认值
model 绑定值 string, string[]
type 显示类型, search 会带搜索框multiple 允许多选 string normal, search, multiple normal
placeholder 输入框占位文本 string
hint-placeholder 获取焦点后显示的占位文本 string
search-placeholder 搜索框占位内容 string
search-model 搜索结果绑定值 string
disabled 禁用 boolean true, false false
change 选中值后的回调函数, 返回当前选中的值 function

el-option

参数 说明 类型 可选值 默认值
label 显示值,可选 string
value 真实值 string
remark 额外信息,将显示在右边 string
disabled 禁用 boolean true, false false

el-option-group

参数 说明 类型 可选值 默认值
hide-title 隐藏标题 boolean true, false false
hide-list 隐藏列表 boolean true, false false
title 真实值 分组标题

Development

make dev

## test
make test

## build
make build

License

MIT