mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-21 01:02:59 +08:00
9d68e29248
Co-authored-by: Kevin <sxzz@sxzz.moe>
14 lines
222 B
Vue
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>
|