mirror of
https://github.com/element-plus/element-plus.git
synced 2025-02-05 11:21:11 +08:00
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>
|