合规国际互联网加速 OSASE为企业客户提供高速稳定SD-WAN国际加速解决方案。 广告
[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 }) } ```