element 中点击table中的某一行,使对应行中的Input获取焦点

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()
        })
      }
    },
}
 

你可能感兴趣的:(vue)