textarea.vue 215 B

12345678910111213
  1. <template>
  2. <el-input
  3. v-model="textarea"
  4. :rows="2"
  5. type="textarea"
  6. placeholder="Please input"
  7. />
  8. </template>
  9. <script lang="ts" setup>
  10. import { ref } from 'vue'
  11. const textarea = ref('')
  12. </script>