SocialNetworks_duan/src/views/LinkPrediction/components/userPanel.vue

32 lines
462 B
Vue
Raw Normal View History

2025-07-17 10:28:56 +08:00
<template>
<div class="userPanel-component">
<img :src="title" alt="" class="title" />
</div>
</template>
<script setup>
import { defineProps } from "vue";
const props = defineProps({
userList: {
type: Array,
default: []
},
title: {
type: String,
default: ""
}
});
</script>
<style scoped lang="less">
.userPanel-component {
width: 100%;
height: 100%;
.title {
margin-top: -7px;
margin-left: -2px;
}
}
</style>