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>
- [Vuejs]-How do i pass a var from v-for back through onclick to a method?
- [Vuejs]-Component – getting data from parent?
Source:stackexchange.com