css中使inputh获取焦点的方法是: autofocus='true'
在项目中点击table表格中的行,使input获取焦点
element中table点击行的事件 @row-click="clickInput"
methods: {
clickInput(row, event, column) {
if (column.label === '能力打分') { // 行中对应的某一个cell
this.$nextTick(() => {
event.target.children[0].focus()
})
}
},
}