Files
PC-Light-Forum/component/hot-search/hot-search.txt
DESKTOP-RQ919RC\Pc 43556292d2 fix(component): 修复组件名称错误和props类型定义
refactor(component): 重构组件模板结构,移除重复代码

feat(component): 添加可选props支持外部数据传入

style(css): 优化样式布局和响应式设计

fix(js): 修复URL路径处理逻辑和滚动加载问题

feat(search): 新增搜索页推荐内容和空状态处理

chore: 添加新图标资源文件
2025-12-22 19:01:00 +08:00

9 lines
351 B
Plaintext

<div class="hot-tag" v-if="list?.length > 0">
<div class="hot-tag-title">
<img class="icon" :src="valueUrl + '/img/triangle-violet.svg'" />
热门搜索
</div>
<div class="list flexflex">
<a class="item" v-for="item in list" :href="'/search/' + item.keyword" target="_blank">{{ item.keyword }}</a>
</div>
</div>