refactor: 优化搜索页面样式和交互逻辑 style: 调整热门标签和热门搜索组件样式 fix: 修复登录状态判断逻辑 chore: 更新图片资源和SVG图标 docs: 更新README文档 test: 添加搜索功能测试用例 build: 更新依赖包版本 ci: 配置自动化测试和部署流程 perf: 优化页面加载性能和响应速度
9 lines
345 B
Plaintext
9 lines
345 B
Plaintext
<div class="hot-tag" v-if="list.length > 0">
|
|
<div class="hot-tag-title">
|
|
<img class="icon" src="./img/triangle-violet.svg" />
|
|
热门搜索
|
|
</div>
|
|
<div class="list flexflex">
|
|
<a class="item" v-for="item in list" :href="'/search.html?kw=' + item.keyword" target="_blank">{{ item.keyword }}</a>
|
|
</div>
|
|
</div> |