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.
ant-design-vue/components/input/demo/show-count.vue

29 lines
487 B

<docs>
---
order: 12
title:
zh-CN: 带字数提示
en-US: With character counting
---
## zh-CN
展示字数提示
## en-US
Show character counting.
</docs>
<template>
<a-input v-model:value="value1" show-count :maxlength="20" />
<br />
<br />
<a-textarea v-model:value="value2" show-count :maxlength="100" />
</template>
<script lang="ts" setup>
import { ref } from 'vue';
const value1 = ref<string>('test value');
const value2 = ref<string>('test value');
</script>