mp-user-info
# **全局个人中心导航(全局通用)**
全局个人中心导航,包含签到、充值、收藏、订单、退出等入口
## 依赖
Jquery 1 | 2
Vue 2.6以上
## 参数
#### :position
> 值:[String] relative | absolute | fixed
默认:fixed
描述:导航定位方式
#### :top
> 值:[String]
默认:auto
描述:导航距离顶部定位
#### :left
> 值:[String]
默认:auto
描述:导航距离左侧定位
#### :right
> 值:[String]
默认:auto
描述:导航距离右侧定位
#### :bottom
> 值:[String]
默认:auto
描述:导航距离底部定位
```language
<mp-user-center :top="'100px'" :right="'36px'"></mp-user-center>
```
#### :selector
> 值:[String] jq可支持的所有css选择器
默认:无
描述:控制导航显示隐藏的交互元素
```language
html
<mp-user-center :selector="'.user_info_btn'"></mp-user-center>
<div class="user_info_btn"></div>
...