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

Switch

\n

Intro

\n

Used to switch between open and closed states.

\n

Install

\n

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

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

Usage

\n

Basic Usage

\n
<van-switch v-model="checked" />\n
\n
import { ref } from 'vue';\n\nexport default {\n  setup() {\n    const checked = ref(true);\n    return { checked };\n  },\n};\n
\n

Disabled

\n
<van-switch v-model="checked" disabled />\n
\n

Loading

\n
<van-switch v-model="checked" loading />\n
\n

Custom Size

\n
<van-switch v-model="checked" size="22px" />\n
\n

Custom Color

\n
<van-switch v-model="checked" active-color="#ee0a24" inactive-color="#dcdee0" />\n
\n

Custom Node

\n

Using node slot to custom the content of the node.

\n
<van-switch v-model="checked">\n  <template #node>\n    <div class="icon-wrapper">\n      <van-icon :name="checked ? 'success' : 'cross'" />\n    </div>\n  </template>\n</van-switch>\n\n<style>\n  .icon-wrapper {\n    display: flex;\n    width: 100%;\n    justify-content: center;\n    font-size: 18px;\n  }\n\n  .icon-wrapper .van-icon-success {\n    line-height: 32px;\n    color: var(--van-blue);\n  }\n\n  .icon-wrapper .van-icon-cross {\n    line-height: 32px;\n    color: var(--van-gray-5);\n  }\n</style>\n
\n

Async Control

\n
<van-switch :model-value="checked" @update:model-value="onUpdateValue" />\n
\n
import { ref } from 'vue';\nimport { showConfirmDialog } from 'vant';\n\nexport default {\n  setup() {\n    const checked = ref(true);\n    const onUpdateValue = (newValue) => {\n      showConfirmDialog({\n        title: 'Confirm',\n        message: 'Are you sure to toggle switch?',\n      }).then(() => {\n        checked.value = newValue;\n      });\n    };\n\n    return {\n      checked,\n      onUpdateValue,\n    };\n  },\n};\n
\n

Inside a Cell

\n
<van-cell center title="Title">\n  <template #right-icon>\n    <van-switch v-model="checked" />\n  </template>\n</van-cell>\n
\n

API

\n

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
AttributeDescriptionTypeDefault
v-modelCheck status of SwitchActiveValue | InactiveValuefalse
loadingWhether to show loading iconbooleanfalse
disabledWhether to disable switchbooleanfalse
sizeSize of switch buttonnumber | string26px
active-colorBackground color when activestring#1989fa
inactive-colorBackground color when inactivestringrgba(120, 120, 128, 0.16)
active-valueValue when activeanytrue
inactive-valueValue when inactiveanyfalse
\n

Events

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
EventDescriptionParameters
changeEmitted when check status changedvalue: any
clickEmitted when component is clickedevent: MouseEvent
\n

Slots

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescriptionSlotProps
nodeCustom the content of node-
backgroundCustom the background of switch-
\n

Types

\n

The component exports the following type definitions:

\n
import type { SwitchProps } 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
NameDefault ValueDescription
--van-switch-size26px-
--van-switch-widthcalc(1.8em + 4px)-
--van-switch-heightcalc(1em + 4px)-
--van-switch-node-size1em-
--van-switch-node-backgroundvar(--van-white)-
--van-switch-node-shadow0 3px 1px 0 rgba(0, 0, 0, 0.05)-
--van-switch-backgroundrgba(120, 120, 128, 0.16)-
--van-switch-on-backgroundvar(--van-primary-color)-
--van-switch-durationvar(--van-duration-base)-
--van-switch-disabled-opacityvar(--van-disabled-opacity)-
\n
'},null,8,e))}}}]);