mirror of
https://github.com/youzan/vant.git
synced 2026-01-16 03:03:46 +08:00
Tag
Install
import Vue from 'vue';
import { Tag } from 'vant';
Vue.use(Tag);
Usage
Basic Usage
<van-tag type="primary">Tag</van-tag>
<van-tag type="success">Tag</van-tag>
<van-tag type="danger">Tag</van-tag>
<van-tag type="warning">Tag</van-tag>
Plain style
<van-tag plain type="primary">Tag</van-tag>
Round style
<van-tag round type="primary">Tag</van-tag>
Mark style
<van-tag mark type="primary">Tag</van-tag>
Closeable
<van-tag v-if="show" closeable size="medium" type="primary" @close="close">
Tag
</van-tag>
export default {
data() {
return {
show: true,
};
},
methods: {
close() {
this.show = false;
},
},
};
Custom Size
<van-tag type="primary">Tag</van-tag>
<van-tag type="primary" size="medium">Tag</van-tag>
<van-tag type="primary" size="large">Tag</van-tag>
Custom Color
<van-tag color="#7232dd">Tag</van-tag>
<van-tag color="#ffe1e1" text-color="#ad0000">Tag</van-tag>
<van-tag color="#7232dd" plain>Tag</van-tag>
API
Props
| Attribute | Description | Type | Default |
|---|---|---|---|
| type | Type, can be set to primary success danger warning |
string | default |
| size | Size, can be set to large medium |
string | - |
| color | Custom color | string | - |
| plain | Whether to be plain style | boolean | false |
| round | Whether to be round style | boolean | false |
| mark | Whether to be mark style | boolean | false |
| text-color | Text color | string | white |
| closeable | Whether to be closeable | boolean | false |
Slots
| Name | Description |
|---|---|
| default | Default slot |
Events
| Event | Description | Arguments |
|---|---|---|
| click | Triggered when clicked | event: Event |
| close | Triggered when click close icon | - |