fix: replace deprecated @keypress with @keydown for Enter key handling (#4258)
parent
453a3a8f84
commit
c439d5601f
|
@ -91,7 +91,7 @@ function handleGo(path: string) {
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div @keypress.enter.prevent="handleSubmit">
|
<div @keydown.enter.prevent="handleSubmit">
|
||||||
<Title>
|
<Title>
|
||||||
{{ title || `${$t('authentication.welcomeBack')} 👋🏻` }}
|
{{ title || `${$t('authentication.welcomeBack')} 👋🏻` }}
|
||||||
<template #desc>
|
<template #desc>
|
||||||
|
|
Loading…
Reference in New Issue