Vue 或 Nuxt 中的 textarea 元素默认向控制台抛出消息

The textarea element in Vue or Nuxt throws a message to the console by default

每当我在 Vue/cli 或 Nuxt 项目中使用 textarea html 元素时,控制台中就会出现此消息。

如何防止此消息出现在控制台中?

<textarea  rows="5" cols="33">
     This is a textarea.
</textarea>

控制台:

Textarea 727bd34788820fe9 ready. contentscript.js:1

如果我在该元素中键入一个词:

Remarks accepted (727bd34788820fe9):0 contentscript.js:1

textarea的spellcheck属性可以在这个MDN document:

中读取

true, which indicates that the element should be, if possible, checked for spelling errors;

false, which indicates that the element should not be checked for spelling errors.

If this attribute is not set, its default value is element-type and browser-defined.

如果有文本区域,如果在 Chrome(或其他浏览器)上安装了像 Becorrect 这样的拼写检查器扩展程序,则可以在控制台开发工具中看到匿名消息。

如果拼写检查值设置为 false 或扩展被禁用,则不会显示此消息。