mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
15 lines
428 B
Plaintext
15 lines
428 B
Plaintext
<wxs src="../wxs/utils.wxs" module="utils" />
|
|
|
|
<view
|
|
class="custom-class {{ utils.bem('tag', [type, size, { mark, plain, round }]) }}"
|
|
style="{{ color && !plain ? 'background-color: ' + color + ';' : '' }}{{ textColor || (color && plain) ? 'color: ' + (textColor || color) : '' }}"
|
|
>
|
|
<slot />
|
|
<van-icon
|
|
wx:if="{{ closeable }}"
|
|
name="cross"
|
|
custom-class="van-tag__close"
|
|
bind:click="onClose"
|
|
/>
|
|
</view>
|