naive-ui/demo/documentation/components/input/enUS/size.md

20 lines
371 B
Markdown
Raw Normal View History

2019-10-10 14:30:36 +08:00
# Size
```html
<n-input v-model="value" type="input" size="small" placeholder="Small Input"/>
<n-input v-model="value" type="input" placeholder="Medium Input"/>
<n-input v-model="value" type="input" size="large" placeholder="Large Input"/>
```
```js
export default {
data() {
return {
value: null
}
}
}
```
```css
.n-input {
margin-bottom: 8px;
}
```