这是我使用的代码示例
render () {
this.$Modal.confirm({
render: (h) => {
// input
return h('Input', {
props: {
value: this.value,
autofocus: true,
placeholder: 'Please enter your name...'
},
on: {
input: (val) => {
this.value = val;
}
}
})
}
})
}
我真的不知道如何在此添加另一个输入