mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-27 05:00:48 +08:00
383 B
383 B
最小值 & 最大值
你可以设定最小值和最大值。
<n-input-number
v-model="value"
placeholder="最小值"
:min="-3"
:max="5"
/>
<n-input-number
v-model="value"
placeholder="最大值"
:min="-5"
:max="3"
/>
export default {
data () {
return {
value: null
}
}
}
.n-input-number {
margin: 0 8px 12px 0
}