Merge pull request #43 from mizhexiaoxiao/main

This commit is contained in:
Ronnie Zhang 2023-06-26 20:46:00 +08:00 committed by GitHub
commit 2eb936bcac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@
v-model:value="queryItems.title" v-model:value="queryItems.title"
type="text" type="text"
placeholder="请输入标题" placeholder="请输入标题"
@keydown.enter="$table?.handleSearch" @keypress.enter="$table?.handleSearch"
/> />
</QueryBarItem> </QueryBarItem>
</template> </template>

View File

@ -31,7 +31,7 @@
show-password-on="mousedown" show-password-on="mousedown"
placeholder="123456" placeholder="123456"
:maxlength="20" :maxlength="20"
@keydown.enter="handleLogin" @keypress.enter="handleLogin"
/> />
</div> </div>