mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-01-12 12:25:16 +08:00
394 B
394 B
Round corner
Input can have round corner.
<n-space vertical align="stretch">
<n-input v-model:value="value" size="small" round placeholder="Small"/>
<n-input v-model:value="value" round placeholder="Medium"/>
<n-input v-model:value="value" size="large" round placeholder="Large"/>
</n-space>
export default {
data () {
return {
value: null
}
}
}