docs: [el-input] add password type (#5002)

Co-authored-by: Kevin <sxzz@sxzz.moe>
This commit is contained in:
Satrong 2021-12-28 15:47:10 +08:00 committed by GitHub
parent 144b7b3d7e
commit 9d68e29248
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,10 @@
<template>
<el-input v-model="input" placeholder="Please input password" show-password />
<el-input
v-model="input"
type="password"
placeholder="Please input password"
show-password
/>
</template>
<script lang="ts" setup>