element/packages/input
2016-12-01 22:28:48 +08:00
..
src fix input-group style 2016-12-01 22:28:48 +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 Initial commit 2016-07-27 14:15:02 +08:00

el-input

A el-input component for Vue.js.

Demo

http://element-component.github.io/el-input

Installation

npm i el-input -D

Usage

import Vue from 'vue'
import ElInput from 'el-input'
import 'element-theme-default/dist/input.css'

Vue.use(ElInput)

or

import Vue from 'vue'
import { ElInput } from 'el-input'

Vue.component('el-input', ElInput)

Options

name description type default
model 绑定值,需双向绑定 string number
placeholder 输入框占位文本 string
suggestion 输入建议 string[]
disabled 是否禁用 boolean false
cache 是否需要缓存 boolean false
effect 输入框效果,允许 text, number, special string text

Development

make dev

# test
make test

# build
make build

License

MIT