vweb-ui
v0.0.3
Published
A Vue.js 2.X UI for Web
Readme
input
Attributes
| 参数 | 说明 | 类型 | | ---- | ---- | ---- | | value | 必填值,输入绑定值 | String | | clearable | 是否可清空 | boolean |
示例
<vui-input v-model="inputVal" class="test-item" :clearable="true" />autocomplate
根据输入内容提供对应的输入建议
Attributes
| 参数 | 说明 | 类型 | | ---- | ---- | ---- | | value | 必填值,输入绑定值 | String | | clearable | 是否可清空 | boolean | | options | 建议列表值 | array |
示例
<vui-autocomplete v-model="autocompleteVal" class="test-item" :clearable="true" :options="['猪蹄','xiami','dapangxie']" />