mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
22 lines
324 B
Markdown
22 lines
324 B
Markdown
## Badge 徽章
|
|
|
|
### 使用指南
|
|
在 app.wxss 中引入组件库所有样式
|
|
```css
|
|
@import "path/to/zanui-weapp/dist/index.wxss";
|
|
```
|
|
|
|
### 代码演示
|
|
```html
|
|
<view class="badge-container zan-badge">
|
|
<view class="zan-badge__count">10</view>
|
|
</view>
|
|
```
|
|
|
|
```css
|
|
.badge-container {
|
|
width: 100px;
|
|
height: 100px;
|
|
}
|
|
```
|