Xiaobai asked, how to add an editable row to the ElementUI table?

as shown in the picture, I want to click the button to add a new line in which the Input box that was just released is editable and looks at the document as if there is no solution. Do you have any solutions?

Mar.02,2021

<el-table-column
  label=""
  width="180">
  <template slot-scope="scope">
    <el-date-picker v-if="editable"
      v-model="value1"
      type="date"
      placeholder="">
    </el-date-picker>
    <span v-else>2018-04-12</span>
  </template>
</el-table-column>
Menu