clearable.vue 219 B

123456789
  1. <template>
  2. <kk-input v-model="input" placeholder="Please input" clearable />
  3. </template>
  4. <script lang="ts" setup>
  5. import { ref } from 'vue'
  6. import { KkInput } from 'kankan-components'
  7. const input = ref('')
  8. </script>