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