[Vuejs]-How to do spell check on text area using element-io

0👍

If you’re using an el-form & el-form-item to wrap your el-input type='textarea' elements, you can utilize the label slot to hook into native browser spellcheck functionality.

  <el-form>
    ...
    <el-form-item>
      <label slot="label" spellcheck="true">Notes</label>
      <el-input type="textarea"></el-input>
    </el-form-item>
    ...
  </el-form>

Leave a comment