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