tiny-vue/examples/sites/demos/pc/app/search/clearable-composition-api.vue

13 lines
270 B
Vue

<template>
<div>
<tiny-search v-model="value" placeholder="请输入关键词" clearable></tiny-search>
</div>
</template>
<script setup lang="jsx">
import { ref } from 'vue'
import { Search as TinySearch } from '@opentiny/vue'
const value = ref('')
</script>