Vue+element-ui, Why is the value read by validate not newly filled in?

:
<el-form-item label=":" :label-width="formLabelWidth" prop="installed_path">
<el-input v-if="editMode" class="edit-input" size="small" v-model.trim="installed_path" :placeholder="pathPlaceholder"></el-input>
<span v-else>{{get_content.installed_path}}</span>
</el-form-item>
            
rules:
installed_path: [
          { validator: validateInstalledPath, trigger: "blur" }
        ],

validator:
    var validateInstalledPath = (rule, value, callback) => {
      console.log("value",value)
      console.log("rule.field",rule.field)
      console.log("this.installed_path", this.installed_path)   

every time after typing in the input box, the value read by validator is always the old value, not the value you just filled in. Check that this.installed_path is the value you just filled in

Mar.09,2021
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b38ddf-2c144.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b38ddf-2c144.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?