TIC-MEHDS-KnowledgeGraph-java/kgBuilder-ui/src/components/KGFocus.vue
不考上研不改网名 405e470b8d add:新增分词搜索
2025-11-07 09:32:33 +08:00

57 lines
952 B
Vue

<!--
* @Description: file content
* @Author: tc
* @Date: 2022-01-01 12:53:00
* @LastEditors: your name
* @LastEditTime: 2022-01-01 14:06:07
-->
<template>
<div id="follow-us" class="guanzhu" style="padding: 20px;">
<h2 class="hometitle"></h2>
<ul>
<li class="wx">
<img
src="@/assets/中国一重.png" style="width: 100%;" />
</li>
</ul>
</div>
</template>
<script>
export default {
props: {
data: Object
},
data() {
return {
};
},
mounted() {},
components: {},
methods: {
}
};
</script>
<style>
.guanzhu ul li {
font-size: 12px;
margin-bottom: 10px;
background: #fff;
color: #525252;
line-height: 40px;
border: 1px solid #ddd;
border-radius: 2px;
position: relative;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
.guanzhu .wx img {
width: 100%;
}
</style>