TheFooter / TheTitle / UserAvatar
三个基础展示组件,无 Props、无 Events。
TheFooter 页脚
页面底部版权文本。
vue
<TheFooter />显示:Copyright (c) 2023
TheTitle 系统标题
<router-link> 包裹的标题组件,点击导航至根路由 /。从租户 store 取 tenantStore.systemName,回退到页面默认标题。
vue
<TheTitle />UserAvatar 用户头像
圆形用户头像,显示用户名首字母(大写),背景为彩色渐变。渐变色根据名称哈希从 10 个预设中确定,相同输入保证颜色一致。
vue
<UserAvatar name="张三" :size="32" />
<UserAvatar name="李四" :size="48" />Props
| 属性 | 类型 | 默认值 | 说明 |
|---|---|---|---|
name | String | '' | 用户显示名称,首字符作为头像文字 |
size | Number | 24 | 头像宽高(px),字号自动计算为 size * 0.4 |
