mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-27 05:00:48 +08:00
371 B
371 B
Size
<n-input v-model="value" type="input" size="small" placeholder="Small Input"/>
<n-input v-model="value" type="input" placeholder="Medium Input"/>
<n-input v-model="value" type="input" size="large" placeholder="Large Input"/>
export default {
data() {
return {
value: null
}
}
}
.n-input {
margin-bottom: 8px;
}