|
1 年之前 | |
---|---|---|
.. | ||
components | 1 年之前 | |
static | 1 年之前 | |
changelog.md | 1 年之前 | |
package.json | 1 年之前 | |
readme.md | 1 年之前 |
<liu-search :hotList="hotList" @input="input" @change="change"></liu-search>
export default {
data() {
return {
hotList: ['白酒', '苹果醋', '红酒', '笔记本', '洗衣液', '平板电脑', '电视机'],//热门搜索
};
},
methods: {
//搜索内容
change(e) {
console.log('搜索内容:' + e)
},
//input事件
input(e){
console.log('搜索框输入的内容:' + e)
}
}
}
名称 | 类型 | 默认值 | 描述 |
---|---|---|---|
hotList | Array | [] | 热门搜索数据 |
placeholder | String | '请输入' | 输入框placeholder |