mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-27 05:00:48 +08:00
360 B
360 B
圆角
文本输入可以是圆角的。
<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="大"/>
export default {
data() {
return {
value: null
}
}
}
.n-input {
margin-bottom: 8px;
}