/*! For license information please see 3860.6532234b.js.LICENSE.txt */ (self.webpackChunk=self.webpackChunk||[]).push([["3860"],{75245:function(n,t,s){"use strict";s.r(t);var a=s("80681");let o=["innerHTML"];t.default={setup:()=>({html:""}),render:()=>((0,a.wg)(),(0,a.iD)("div",{class:"van-doc-markdown-body",innerHTML:'

ActionBar

\n

Intro

\n

Used to provide convenient interaction for page-related operations.

\n

Install

\n

Register component globally via app.use, refer to Component Registration for more registration ways.

\n
import { createApp } from 'vue';\nimport { ActionBar, ActionBarIcon, ActionBarButton } from 'vant';\n\nconst app = createApp();\napp.use(ActionBar);\napp.use(ActionBarIcon);\napp.use(ActionBarButton);\n
\n

Usage

\n

Basic Usage

\n
<van-action-bar>\n  <van-action-bar-icon icon="chat-o" text="Icon1" @click="onClickIcon" />\n  <van-action-bar-icon icon="cart-o" text="Icon2" @click="onClickIcon" />\n  <van-action-bar-icon icon="shop-o" text="Icon3" @click="onClickIcon" />\n  <van-action-bar-button type="danger" text="Button" @click="onClickButton" />\n</van-action-bar>\n
\n
import { showToast } from 'vant';\n\nexport default {\n  setup() {\n    const onClickIcon = () => showToast('Click Icon');\n    const onClickButton = () => showToast('Click Button');\n    return {\n      onClickIcon,\n      onClickButton,\n    };\n  },\n};\n
\n

Icon Badge

\n

Use badge prop to show badge in icon.

\n
<van-action-bar>\n  <van-action-bar-icon icon="chat-o" text="Icon1" dot />\n  <van-action-bar-icon icon="cart-o" text="Icon2" badge="5" />\n  <van-action-bar-icon icon="shop-o" text="Icon3" badge="12" />\n  <van-action-bar-button type="warning" text="Button" />\n  <van-action-bar-button type="danger" text="Button" />\n</van-action-bar>\n
\n

Custom Icon Color

\n
<van-action-bar>\n  <van-action-bar-icon icon="chat-o" text="Icon1" color="#ee0a24" />\n  <van-action-bar-icon icon="cart-o" text="Icon2" />\n  <van-action-bar-icon icon="star" text="Collected" color="#ff5000" />\n  <van-action-bar-button type="warning" text="Button" />\n  <van-action-bar-button type="danger" text="Button" />\n</van-action-bar>\n
\n

Custom Button Color

\n
<van-action-bar>\n  <van-action-bar-icon icon="chat-o" text="Icon1" />\n  <van-action-bar-icon icon="shop-o" text="Icon2" />\n  <van-action-bar-button color="#be99ff" type="warning" text="Button" />\n  <van-action-bar-button color="#7232dd" type="danger" text="Button" />\n</van-action-bar>\n
\n

API

\n

ActionBar Props

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AttributeDescriptionTypeDefault
safe-area-inset-bottomWhether to enable bottom safe area adaptationbooleantrue
placeholderWhether to generate a placeholder elementbooleanfalse
\n

ActionBarIcon Props

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AttributeDescriptionTypeDefault
textButton textstring-
iconIconstring-
colorIcon colorstring#323233
icon-classIcon class namestring | Array | object\'\'
icon-prefixIcon className prefixstringvan-icon
dotWhether to show red dotboolean-
badgeContent of the badgenumber | string-
badge-propsProps of Badge, see Badge - propsBadgeProps-
urlLink URLstring-
toThe target route should navigate to when clicked on, same as the to prop of Vue Routerstring | object-
replaceIf true, the navigation will not leave a history recordbooleanfalse
\n

ActionBarButton Props

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AttributeDescriptionTypeDefault
textButton textstring-
typeButton type, Can be set to default primary success warning dangerstringdefault
colorButton color, support linear-gradientstring-
iconLeft Iconstring-
disabledWhether to disable buttonbooleanfalse
loadingWhether to show loading statusbooleanfalse
urlLinkstring-
toThe target route should navigate to when clicked on, same as the to prop of Vue Routerstring | object-
replaceIf true, the navigation will not leave a history recordbooleanfalse
\n

ActionBarIcon Slots

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription
defaultText
iconCustom icon
\n

ActionBarButton Slots

\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription
defaultButton content
\n

Types

\n

The component exports the following type definitions:

\n
import type {\n  ActionBarProps,\n  ActionBarIconProps,\n  ActionBarButtonProps,\n} from 'vant';\n
\n

Theming

\n

CSS Variables

\n

The component provides the following CSS variables, which can be used to customize styles. Please refer to ConfigProvider component.

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDefault ValueDescription
--van-action-bar-backgroundvar(--van-background-2)-
--van-action-bar-height50px-
--van-action-bar-icon-width48px-
--van-action-bar-icon-height100%-
--van-action-bar-icon-colorvar(--van-text-color)-
--van-action-bar-icon-size18px-
--van-action-bar-icon-font-sizevar(--van-font-size-xs)-
--van-action-bar-icon-active-colorvar(--van-active-color)-
--van-action-bar-icon-text-colorvar(--van-text-color)-
--van-action-bar-icon-backgroundvar(--van-background-2)-
--van-action-bar-button-height40px-
--van-action-bar-button-warning-colorvar(--van-gradient-orange)-
--van-action-bar-button-danger-colorvar(--van-gradient-red)-
\n
'},null,8,o))}}}]);