12345678910111213141516171819202122 |
- <template>
- <kk-input
- v-model="textarea1"
- autosize
- type="textarea"
- placeholder="Please input"
- />
- <div style="margin: 20px 0" />
- <kk-input
- v-model="textarea2"
- :autosize="{ minRows: 2, maxRows: 4 }"
- type="textarea"
- placeholder="Please input"
- />
- </template>
- <script lang="ts" setup>
- import { ref } from 'vue'
- import { KkInput } from 'kankan-components'
- const textarea1 = ref('')
- const textarea2 = ref('')
- </script>
|