欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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
 })