tiny-vue/examples/docs/resources/pc/demo/search/basic-usage.vue

22 lines
321 B
Vue

<template>
<div>
<tiny-search v-model="value" placeholder="请输入关键词"></tiny-search>
{{ value }}
</div>
</template>
<script lang="jsx">
import { Search } from '@opentiny/vue'
export default {
components: {
TinySearch: Search
},
data() {
return {
value: ''
}
}
}
</script>