# Comment Card 评论卡片 盖楼模式
单个卡片评论样式,可对单个卡片进行点赞,回复,更多操作等。
# 规则
- 支持暗黑模式
- 对于父级回复是盖楼模式
# 可选参数
Prop | type | Required | Default | Description |
---|---|---|---|---|
darkMode | Boolean | no | false | 是否是暗黑模式 |
avatar | String | no | '' | 头像src地址 |
nickname | String | no | '' | 昵称 |
like | Boolean | no | false | 是否点赞 |
likeCount | Number | no | 0 | 点赞数量 |
message | String | no | '' | 回复内容文字信息 |
imageUrl | String | no | '' | 回复内容图片src地址 |
parentReply | Object | no | { } | 父级回复内容 |
detail | Object | yes | { } | 回复对象 |
# 事件回调
Event | args | Description |
---|---|---|
reply() | { message,nickname} | 点击回复触发 |
like() | detail | 点赞时触发 |
operation() | detail | 点击更多操作触发 |
avatar() | detail | 点击头像触发 |