🌈 An enterprise-class UI components based on Ant Design and Vue. 🐜
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

51 lines
1.2 KiB

<docs>
---
order: 11
title:
zh-CN: 密码框
en-US: Password box
---
## zh-CN
密码框
## en-US
Input type of password.
</docs>
<template>
<a-space direction="vertical" size="middle" style="width: 100%">
<a-input-password v-model:value="value" placeholder="input password" />
<a-input-password v-model:value="value2" placeholder="input password">
<template #iconRender="v">
<EyeTwoTone v-if="v"></EyeTwoTone>
<EyeInvisibleOutlined v-else></EyeInvisibleOutlined>
</template>
</a-input-password>
<a-input-password
v-model:value="value3"
placeholder="input password"
:visibility-toggle="false"
/>
<a-space>
<a-input-password
v-model:value="value4"
v-model:visible="visible"
placeholder="input password"
/>
<a-button @click="visible = !visible">{{ visible ? 'Hide' : 'Show' }}</a-button>
</a-space>
</a-space>
</template>
<script lang="ts" setup>
import { ref } from 'vue';
import { EyeTwoTone, EyeInvisibleOutlined } from '@ant-design/icons-vue';
const value = ref<string>('');
const value2 = ref<string>('');
const value3 = ref<string>('');
const value4 = ref<string>('');
const visible = ref<boolean>(true);
</script>