How can the vue input change event get the value and the value passed by itself at the same time?

so that you can get the value in js

<el-input v-model="item.task_name" @blur="UpdateTaskName"></el-input>

UpdateTaskName(value){
    console.log(value)
}

but what should I do when I pass an item and get the value at the same time

Mar.28,2021

<el-input v-model="item.task_name" @blur="UpdateTaskName($event)"></el-input>
UpdateTaskName(e) {
      console.log(e.target.value);
    }
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-1b3dd6d-2b10a.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-1b3dd6d-2b10a.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?