32 lines
462 B
Vue
32 lines
462 B
Vue
|
|
<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>
|