Skip to content

Instantly share code, notes, and snippets.

@yuzhouu
Created January 15, 2019 09:24
Show Gist options
  • Save yuzhouu/f307a9321f5247aeb9d9698aca84c7cb to your computer and use it in GitHub Desktop.
Save yuzhouu/f307a9321f5247aeb9d9698aca84c7cb to your computer and use it in GitHub Desktop.
prevent chrome autocomplete
<template>
<div>
<input type="password" :style="{ position: 'absolute', top: '-99999px' }"> // this line prevent chrome autocomplete below
<input :type="computedType" autocomplete="off">
<span
v-if="type==='password'"
:class="['eye', eyeStatus?'eye-open':'eye-close']"
@click="toggleEyeStatus"
></span>
</div>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment