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.
41 lines
845 B
41 lines
845 B
<docs>
|
|
---
|
|
order: 2
|
|
title:
|
|
zh-CN: 前缀和后缀
|
|
en-US: prefix and suffix
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
在输入框上添加前缀或后缀图标。
|
|
|
|
## en-US
|
|
|
|
Add prefix or suffix icons inside input.
|
|
|
|
</docs>
|
|
<template>
|
|
<div class="components-input-demo-presuffix">
|
|
<a-input v-model:value="userName" placeholder="Basic usage">
|
|
<template #prefix>
|
|
<user-outlined />
|
|
</template>
|
|
<template #suffix>
|
|
<a-tooltip title="Extra information">
|
|
<info-circle-outlined style="color: rgba(0, 0, 0, 0.45)" />
|
|
</a-tooltip>
|
|
</template>
|
|
</a-input>
|
|
<br />
|
|
<br />
|
|
<a-input prefix="¥" suffix="RMB" />
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { UserOutlined, InfoCircleOutlined } from '@ant-design/icons-vue';
|
|
import { ref } from 'vue';
|
|
const userName = ref<string>('');
|
|
</script>
|