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

21 lines
368 B
Markdown
Raw Normal View History

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