Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用element-ui,版本 1.43。
我想spell-check在text区域输入中添加(如果我写错了,那么红线应该出现在该文本下方,右键单击我可以获得建议)。
spell-check
text
如何使用 element-ui 来实现它。
如果你使用el-form&el-form-item来包装你的el-input type='textarea'元素,你可以利用这个label插槽来连接本地浏览器的拼写检查功能。
el-form
el-form-item
el-input type='textarea'
label
<el-form> ... <el-form-item> <label slot="label" spellcheck="true">Notes</label> <el-input type="textarea"></el-input> </el-form-item> ... </el-form>