# PanelUser 个人面板 
常用于个人中心。
# 基础用法
<template>
<qinui-panel-user
image="https://dz-cdn.test.fanzhi.cn/images/e9/65/cdaf9e5ea3ddba23387826f5df23.jpg?x-oss-process=image/resize,w_200,h_200,m_fill/quality,q_100"
name="13011805800"
@exitClick="onExit"
/>
</template>
<script lang="ts" setup>
const onExit = () => {
console.log('退出');
};
</script>
# API
# Props
| 参数 | 说明 | 类型 | 默认值 | 可选值 |
|---|---|---|---|---|
| image | 图片地址 | String | - | - |
| name | 名字 | String | - | - |
| exitText | 退出文案 | String | 退出登录 | - |
# Events
| 事件名 | 说明 | 回调参数 |
|---|---|---|
| @exitClick | 点击退出触发 | - |