From 7ca42be6036b755a4f9dc89891a3f77a184281f0 Mon Sep 17 00:00:00 2001 From: toruksmakto <42709228+toruksmakto@users.noreply.github.com> Date: Thu, 18 Apr 2019 19:54:34 +0800 Subject: [PATCH] perf[login.vue]: add tabindex for login form (#1933) --- src/views/login/index.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/views/login/index.vue b/src/views/login/index.vue index 9bff21a3..27f11ef5 100644 --- a/src/views/login/index.vue +++ b/src/views/login/index.vue @@ -19,6 +19,7 @@ :placeholder="$t('login.username')" name="username" type="text" + tabindex="1" auto-complete="on" /> @@ -35,6 +36,7 @@ :type="passwordType" :placeholder="$t('login.password')" name="password" + tabindex="2" auto-complete="on" @keyup.native="checkCapslock" @blur="capsTooltip = false"