fix(plugin-md-power): avoid spellcheck in CodeEditor (#736)

Added spellcheck attribute to textarea for CodeEditor.
This commit is contained in:
yxzlwz 2025-10-20 21:47:09 +08:00 committed by GitHub
parent 5fb7b7a216
commit 441b991b65
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -82,7 +82,7 @@ onUnmounted(() => {
<div ref="editorEl" class="code-repl-editor">
<slot />
<!-- eslint-disable-next-line vue-a11y/form-control-has-label -->
<textarea ref="textAreaEl" v-model="input" class="code-repl-input" />
<textarea ref="textAreaEl" v-model="input" class="code-repl-input" spellcheck="false" />
</div>
</template>