mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-27 05:00:48 +08:00
348 B
348 B
使用输入预设
默认状况下,n-dynamic-input
的预设是 input
。
<n-dynamic-input
v-model="value"
placeholder="请输入"
:min="3"
:max="6"
/>
<pre>
{{ JSON.stringify(value, 0, 2) }}
</pre>
export default {
data () {
return {
value: [
'',
'',
''
]
}
}
}