Skip to content

Commit

Permalink
禁用拼写检查
Browse files Browse the repository at this point in the history
  • Loading branch information
F-loat committed Jun 10, 2020
1 parent 603ed5a commit c44e31d
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions src/pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,21 @@
</v-app-bar>
<v-content>
<div class="main" @drop.prevent="dropFile">
<textarea ref="source" class="source" v-model="files[0].source" placeholder="支持多文件拖入" @input="resultSync" />
<textarea ref="result" class="result" v-model="files[0].result" placeholder="支持批量导出" />
<textarea
ref="source"
class="source"
v-model="files[0].source"
placeholder="支持多文件拖入"
spellcheck="false"
@input="resultSync"
/>
<textarea
ref="result"
class="result"
v-model="files[0].result"
placeholder="支持批量导出"
spellcheck="false"
/>
</div>
<v-btn class="file-btn" color="secondary" dark fixed bottom right fab>
<v-icon>mdi-plus</v-icon>
Expand Down

0 comments on commit c44e31d

Please sign in to comment.