demo3.vue 217 B

12345678
  1. <template>
  2. <m-textarea v-model="textareaVal" placeholder="请输入内容" :maxlength="100" show-word-limit></m-textarea>
  3. </template>
  4. <script setup>
  5. import { ref } from "vue";
  6. const textareaVal = ref('');
  7. </script>