tiny-vue/examples/sites/demos/mobile-first/app/search/default-value.vue

19 lines
248 B
Vue

<template>
<tiny-search v-model="value"></tiny-search>
</template>
<script>
import { Search } from '@opentiny/vue'
export default {
components: {
TinySearch: Search
},
data() {
return {
value: '搜索'
}
}
}
</script>