length-limiting.vue 378 B

1234567891011
  1. <template>
  2. <el-input v-model="text" maxlength="10" placeholder="Please input" show-word-limit type="text" />
  3. <div style="margin: 20px 0" />
  4. <el-input v-model="textarea" maxlength="30" placeholder="Please input" show-word-limit type="textarea" />
  5. </template>
  6. <script lang="ts" setup>
  7. import { ref } from 'vue'
  8. const text = ref('')
  9. const textarea = ref('')
  10. </script>