W3Cschool
恭喜您成為首批注冊(cè)用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
import Vue from 'vue';
import { Tag } from 'vant';
Vue.use(Tag);
通過type屬性控制標(biāo)簽顏色,默認(rèn)為灰色
<van-tag>標(biāo)簽</van-tag>
<van-tag type="primary">標(biāo)簽</van-tag>
<van-tag type="success">標(biāo)簽</van-tag>
<van-tag type="danger">標(biāo)簽</van-tag>
<van-tag type="warning">標(biāo)簽</van-tag>
通過round設(shè)置為圓角樣式
<van-tag round>標(biāo)簽</van-tag>
<van-tag round type="primary">標(biāo)簽</van-tag>
<van-tag round type="success">標(biāo)簽</van-tag>
<van-tag round type="danger">標(biāo)簽</van-tag>
<van-tag round type="warning">標(biāo)簽</van-tag>
通過mark設(shè)置為標(biāo)記樣式(半圓角)
<van-tag mark>標(biāo)簽</van-tag>
<van-tag mark type="primary">標(biāo)簽</van-tag>
<van-tag mark type="success">標(biāo)簽</van-tag>
<van-tag mark type="danger">標(biāo)簽</van-tag>
<van-tag mark type="warning">標(biāo)簽</van-tag>
設(shè)置plain屬性設(shè)置為空心樣式
<van-tag plain>標(biāo)簽</van-tag>
<van-tag plain type="primary">標(biāo)簽</van-tag>
<van-tag plain type="success">標(biāo)簽</van-tag>
<van-tag plain type="danger">標(biāo)簽</van-tag>
<van-tag plain type="warning">標(biāo)簽</van-tag>
<van-tag color="#f2826a">標(biāo)簽</van-tag>
<van-tag color="#f2826a" plain>標(biāo)簽</van-tag>
<van-tag color="#7232dd">標(biāo)簽</van-tag>
<van-tag color="#7232dd" plain>標(biāo)簽</van-tag>
<van-tag color="#ffe1e1" text-color="#ad0000">標(biāo)簽</van-tag>
<van-tag type="danger">標(biāo)簽</van-tag>
<van-tag type="danger" size="medium">標(biāo)簽</van-tag>
<van-tag type="danger" size="large">標(biāo)簽</van-tag>
添加closeable屬性表示標(biāo)簽是可關(guān)閉的,關(guān)閉標(biāo)簽時(shí)會(huì)觸發(fā)close事件,在close事件中可以執(zhí)行隱藏標(biāo)簽的邏輯
<van-tag
v-if="show.primary"
closeable
size="medium"
type="primary"
@close="close('primary')"
>
標(biāo)簽
</van-tag>
<van-tag
v-if="show.success"
closeable
size="medium"
type="success"
@close="close('success')"
>
標(biāo)簽
</van-tag>
export default {
data() {
return {
show: {
primary: true,
success: true
}
}
},
methods: {
close(type) {
this.show[type] = false;
}
}
}
參數(shù) | 說明 | 類型 | 默認(rèn)值 |
---|---|---|---|
type | 類型,可選值為primary success danger warning | string | default |
size | 大小, 可選值為large medium | string | - |
color | 標(biāo)簽顏色 | string | - |
plain | 是否為空心樣式 | boolean | false |
round | 是否為圓角樣式 | boolean | false |
mark | 是否為標(biāo)記樣式 | boolean | false |
text-color | 文本顏色,優(yōu)先級(jí)高于color 屬性 | string | white |
closeable v2.2.9 | 是否為可關(guān)閉標(biāo)簽 | boolean | false |
名稱 | 說明 |
---|---|
default | 標(biāo)簽顯示內(nèi)容 |
事件名 | 說明 | 回調(diào)參數(shù) |
---|---|---|
click | 點(diǎn)擊時(shí)觸發(fā) | event: Event |
close | 關(guān)閉標(biāo)簽時(shí)觸發(fā) | - |
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: