We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53945dc commit 3212853Copy full SHA for 3212853
src/components/top-bar/TopBar.vue
@@ -16,6 +16,7 @@
16
v-if="isLogined"
17
class="flex items-center gap-5">
18
<div
19
+ v-if="info.role !== 'ROLE_ADMIN'"
20
:key="isNotifiVisible + ''"
21
ref="notifiRef"
22
class="flex">
src/views/LoginView.vue
@@ -22,7 +22,8 @@
v-model="id"
23
placeholder="아이디를 입력해주세요"
24
required
25
- class="input-box" />
+ class="input-box"
26
+ autocomplete="username" />
27
</div>
28
<div class="relative">
29
<input
@@ -31,7 +32,8 @@
31
32
v-model="password"
33
placeholder="비밀번호를 입력해주세요"
34
35
36
+ autocomplete="current-password" />
37
38
<div class="flex flex-col gap-2 items-center">
39
<button
0 commit comments