::: demo Add `size` attribute to change the size of Input. In addition to the default size, there are three other options: `large`, `small` and `mini`.
```html
<div>
<divclass="demo-input-size">
<el-input
class="inline-input"
size="large"
placeholder="Please input"
placeholder="请输入内容"
v-model="input6">
</el-input>
<el-input
class="inline-input"
placeholder="Please input"
placeholder="请输入内容"
v-model="input7">
</el-input>
<el-input
class="inline-input"
size="small"
placeholder="Please input"
placeholder="请输入内容"
v-model="input8">
</el-input>
<el-input
class="inline-input"
size="mini"
placeholder="Please input"
placeholder="请输入内容"
v-model="input9">
</el-input>
</div>
...
...
@@ -350,24 +332,24 @@ You can get some recommended tips based on the current input.
::: demo Autocomplete component provides input suggestions. The `fetch-suggestions` attribute is a method that returns suggested input. In this example, `querySearch(queryString, cb)` returns suggestions to Autocomplete via `cb(data)` when suggestions are ready.
```html
<el-rowclass="border-grid">
<el-col:span="12"class="tac">
<divclass="text">list suggestions when activated</div>