修改el-input placeholder样式和内容

<el-input v-else v-model="scope.row.depositBank" :placeholder="showPlaceholder()" :class="{'error-tips' : isTips}" />
 
data(){
  return {    
    showPlaceholder() {
          return  this.isTips ? '内容不重复' : '不为空'
      },
  }
}
 
.el-input__inner {
      &::placeholder {
        color: #D20000;
      }
 }
posted @ 2022-03-31 13:45  博客天天写  阅读(1565)  评论(0编辑  收藏  举报