<template> <kk-input v-model="textarea" :rows="2" type="textarea" placeholder="Please input" /> </template> <script lang="ts" setup> import { ref } from 'vue' import { KkInput } from 'kankan-components' const textarea = ref('') </script>