🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
[toc] ### 1. 实现搜索框搜索功能 ``` <Input class="ml-auto" style="width: 200px;" search enter-button placeholder="请输入关键词..." @on-search="search"/> search(e){ if(e == ''){ return this.getData() } this.axios.get('/api/file/search?keyword=' + e,{ token:true }).then(res=>{ let list = this.formatList(res.data.rows) this.list = list }) } ```