123456789101112131415161718192021222324 |
- <template>
- <kk-input
- v-model="text"
- maxlength="10"
- placeholder="Please input"
- show-word-limit
- type="text"
- />
- <div style="margin: 20px 0" />
- <kk-input
- v-model="textarea"
- maxlength="30"
- placeholder="Please input"
- show-word-limit
- type="textarea"
- />
- </template>
- <script lang="ts" setup>
- import { ref } from 'vue'
- import { KkInput } from 'kankan-components'
- const text = ref('')
- const textarea = ref('')
- </script>
|