You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
杨杰
b34f026ce5
|
4 years ago | |
---|---|---|
.. | ||
components/uni-fav | 4 years ago | |
changelog.md | 4 years ago | |
package.json | 4 years ago | |
readme.md | 4 years ago |
readme.md
Fav 收藏按钮
代码块:
uFav
用于收藏功能,可点击切换选中、不选中的状态。
安装方式
本组件符合easycom规范,HBuilderX 2.5.5
起,只需将本组件导入项目,在页面template
中即可直接使用,无需在页面中import
和注册components
。
如需通过npm
方式使用uni-ui
组件,另见文档:https://ext.dcloud.net.cn/plugin?id=55
基本用法
在 template
中使用组件
<uni-fav :checked="checked" @click="onClick"/>
<uni-fav :checked="checked" class="favBtn" circle="true" bgColor="#dd524d" bgColorChecked="#007aff" @click="onClick"/>
API
Fav Props
属性名 | 类型 | 默认值 | 说明 |
---|---|---|---|
star | Boolean | true | 按钮是否带星星 |
bgColor | String | #eeeeee | 未收藏时的背景色 |
bgColorChecked | String | #007aff | 已收藏时的背景色 |
fgColor | String | #666666 | 未收藏时的文字颜色 |
fgColorChecked | String | #FFFFFF | 已收藏时的文字颜色 |
circle | Boolean | false | 是否为圆角 |
checked | Boolean | false | 是否为已收藏 |
contentText | Object | {contentDefault: '收藏',contentFav: '已收藏'} |
收藏按钮文字 |
Fav Events
事件称名 | 说明 | 返回值 |
---|---|---|
click | 点击 fav按钮 触发事件 | - |