mirror of
https://gitee.com/ElemeFE/element.git
synced 2024-11-30 03:07:36 +08:00
.. | ||
src | ||
cooking.conf.js | ||
index.js | ||
package.json | ||
README.md |
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