Uniapp 搜索框 Vue2 模板代码示例
<template>
<view>
<input type='text' v-model='searchStr' placeholder='请输入搜索关键词' />
<button type='primary' @click='search'>搜索</button>
</view>
</template>
<script>
export default {
data() {
return {
searchStr: ''
}
},
methods: {
search() {
// 根据searchStr执行搜索操作
}
}
}
</script>
原文地址: https://www.cveoy.top/t/topic/m1kv 著作权归作者所有。请勿转载和采集!