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

21 lines
360 B
Markdown
Raw Normal View History

2020-02-04 20:45:34 +08:00
# 圆角
文本输入可以是圆角的。
```html
<n-input v-model="value" size="small" round placeholder="小"/>
<n-input v-model="value" round placeholder="中"/>
<n-input v-model="value" size="large" round placeholder="大"/>
```
```js
export default {
data() {
return {
value: null
}
}
}
```
```css
.n-input {
margin-bottom: 8px;
}
```