9 lines
350 B
Plaintext
9 lines
350 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> |