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