/*! For license information please see 5132.b6920b11.js.LICENSE.txt */ (self.webpackChunk=self.webpackChunk||[]).push([["5132"],{86063:function(s,a,n){"use strict";n.r(a);var t=n("80681");let l=["innerHTML"];a.default={setup:()=>({html:""}),render:()=>((0,t.wg)(),(0,t.iD)("div",{class:"van-doc-markdown-body",innerHTML:'
Used to mark keywords and summarize the main content.
\nRegister component globally via app.use
, refer to Component Registration for more registration ways.
import { createApp } from 'vue';\nimport { Tag } from 'vant';\n\nconst app = createApp();\napp.use(Tag);\n
\n<van-tag type="primary">Tag</van-tag>\n<van-tag type="success">Tag</van-tag>\n<van-tag type="danger">Tag</van-tag>\n<van-tag type="warning">Tag</van-tag>\n
\n<van-tag plain type="primary">Tag</van-tag>\n
\n<van-tag round type="primary">Tag</van-tag>\n
\n<van-tag mark type="primary">Tag</van-tag>\n
\n<van-tag :show="show" closeable size="medium" type="primary" @close="close">\n Tag\n</van-tag>\n
\nimport { ref } from 'vue';\n\nexport default {\n setup() {\n const show = ref(true);\n const close = () => {\n show.value = false;\n };\n\n return {\n show,\n close,\n };\n },\n};\n
\n<van-tag type="primary">Tag</van-tag>\n<van-tag type="primary" size="medium">Tag</van-tag>\n<van-tag type="primary" size="large">Tag</van-tag>\n
\n<van-tag color="#7232dd">Tag</van-tag>\n<van-tag color="#ffe1e1" text-color="#ad0000">Tag</van-tag>\n<van-tag color="#7232dd" plain>Tag</van-tag>\n
\nAttribute | \nDescription | \nType | \nDefault | \n
---|---|---|---|
type | \nType, can be set to primary success danger warning | \nstring | \ndefault | \n
size | \nSize, can be set to large medium | \nstring | \n- | \n
color | \nCustom color | \nstring | \n- | \n
show | \nWhether to show tag | \nboolean | \ntrue | \n
plain | \nWhether to be plain style | \nboolean | \nfalse | \n
round | \nWhether to be round style | \nboolean | \nfalse | \n
mark | \nWhether to be mark style | \nboolean | \nfalse | \n
text-color | \nText color | \nstring | \nwhite | \n
closeable | \nWhether to be closeable | \nboolean | \nfalse | \n
Name | \nDescription | \n
---|---|
default | \nDefault slot | \n
Event | \nDescription | \nArguments | \n
---|---|---|
click | \nEmitted when component is clicked | \nevent: MouseEvent | \n
close | \nEmitted when close icon is clicked | \nevent: MouseEvent | \n
The component exports the following type definitions:
\nimport type { TagSize, TagType, TagProps } from 'vant';\n
\nThe component provides the following CSS variables, which can be used to customize styles. Please refer to ConfigProvider component.
\nName | \nDefault Value | \nDescription | \n
---|---|---|
--van-tag-padding | \n0 var(--van-padding-base) | \n- | \n
--van-tag-text-color | \nvar(--van-white) | \n- | \n
--van-tag-font-size | \nvar(--van-font-size-sm) | \n- | \n
--van-tag-radius | \n2px | \n- | \n
--van-tag-line-height | \n16px | \n- | \n
--van-tag-medium-padding | \n2px 6px | \n- | \n
--van-tag-large-padding | \nvar(--van-padding-base) var(--van-padding-xs) | \n- | \n
--van-tag-large-radius | \nvar(--van-radius-md) | \n- | \n
--van-tag-large-font-size | \nvar(--van-font-size-md) | \n- | \n
--van-tag-round-radius | \nvar(--van-radius-max) | \n- | \n
--van-tag-danger-color | \nvar(--van-danger-color) | \n- | \n
--van-tag-primary-color | \nvar(--van-primary-color) | \n- | \n
--van-tag-success-color | \nvar(--van-success-color) | \n- | \n
--van-tag-warning-color | \nvar(--van-warning-color) | \n- | \n
--van-tag-default-color | \nvar(--van-gray-6) | \n- | \n
--van-tag-plain-background | \nvar(--van-background-2) | \n- | \n