如何快速找到各类网站,实现高效上网?

摘要:<!-- run --> <div id="app"> <div style=
<!-- run --> <div id="app"> <div style="height: 10px"></div> <div class="series-container" v-for="serises in webs"> <h2 v-bind:id="`${serises.series_name}`">{{serises.series_name}}</h2> <el-row :gutter="10"> <el-col v-for="(item,i) in serises.content" :key="i"> <el-card shadow="hover" style="margin-bottom: 10px; width: 100%; position: relative; border-radius:12px;" > <el-link :underline="false" :href="item.path" type="info" style="width: 100%;justify-content: flex-start;"> <div class="item-title" style="margin: 8px auto; font-weight: 500; font-size: 1.2rem; display:flex;align-items:center;color:black" v-cloak > <img :src="`https://toolb.cn/favicon/${item.path}`" onerror="this.src='https://img2024.cnblogs.com/blog/1489774/202511/1489774-20251107123833297-1157746382.webp'" style="width: 30px!important; height:30px!important;object-fit:cover;margin-right:10px;overflow:hidden;" ></img> <div class="title"> {{item.title}} </div> </div> <span class="item-desc" style=" font-size:small;float:left;position:relative;bottom: 1px;">{{item.desc}}</span > </el-link> </el-card> </el-col> </el-row> </div> <div style="height: 10px"></div> </div> <style> @media screen and (min-width:767px) { .el-col{ width:25%; } } .el-card .title { -webkit-line-clamp: 1; line-height: 32px !important; height:32px; display: -webkit-box; -webkit-box-orient: vertical; text-overflow: ellipsis; overflow: hidden; } .el-card .item-desc { -webkit-line-clamp: 2; line-height: 24px !important; height:48px; display: -webkit-
阅读全文