elementui $prompt button默认值 初始值
程序员文章站
2022-04-04 20:53:55
...
this.$prompt(' ', '请输入标题:', {inputValue: `${file.title}` }).then(({ value, action }) => {
if(!value){
return false;
}
this.$message.success("操作成功")
this.fileList4[i].title = value
})