fix(user): disable spell check in domain input

This commit is contained in:
三咲智子 2022-12-31 06:01:46 +08:00
parent 4bc72905de
commit a347515781
No known key found for this signature in database
GPG key ID: 69992F2250DFD93E

View file

@ -114,6 +114,10 @@ onMounted(async () => {
ref="input"
v-model="server"
outline-none bg-transparent w-full max-w-50
spellcheck="false"
autocorrect="off"
autocomplete="off"
autocapitalize="none"
@input="handleInput"
@keydown.down="move(1)"
@keydown.up="move(-1)"