【发布时间】:2022-01-09 17:56:33
【问题描述】:
我有一个输入字段,每次更改值时都需要调用该函数并将新值传递给该函数。我找不到怎么做。
<template slot-scope="scope">
<el-input
type="text"
:value="scope.row.name"
v-model="queryName"
@change="changeQueryName(scope.row.id, ???.queryName)">
</el-input>
</template>
【问题讨论】:
标签: javascript vue.js vuejs3