element-plus/docs/examples/input/password.vue
Satrong 9d68e29248
docs: [el-input] add password type (#5002)
Co-authored-by: Kevin <sxzz@sxzz.moe>
2021-12-28 15:47:10 +08:00

14 lines
222 B
Vue

<template>
<el-input
v-model="input"
type="password"
placeholder="Please input password"
show-password
/>
</template>
<script lang="ts" setup>
import { ref } from 'vue'
const input = ref('')
</script>