mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-27 05:00:48 +08:00
368 B
368 B
Round corner
Input can have round corner.
<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"/>
export default {
data() {
return {
value: null
}
}
}
.n-input {
margin-bottom: 8px;
}