💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
[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 }) } ```