更新记录
1.1(2021-04-23) 下载此版本
添加蒙层
1.0(2021-04-23) 下载此版本
下拉选择搜索组件
平台兼容性
<xt-seach :selectList="selectList" @seachClick="seachClick"></xt-seach>
<script>
import xtSeach from '@/components/xt-seach/xt-seach.vue'
export default {
components:{xtSeach},
data() {
return {
selectList:[
{id:1,name:'11'},
{id:2,name:'22'},
{id:3,name:'33'},
],
}
},
methods: {
//选择搜索分类
seachClick(options) {
console.log(options);
},
}
}
</script>