Skip to content
On this page

switch

开关选择器。

Props

参数类型默认值必填说明
checkedbooleanfalse是否选中(支持 v-model:checked)
disabledbooleanfalse是否禁用
typestringswitch样式,有效值:switch, checkbox
colorcolor
#1989fa
switch 选中时的颜色

Events

事件名说明回调参数
change点击导致 checked 改变时会触发 change 事件{ value: boolean }

Example

vue
<template>
  <switch :checked="true" color="#04BE02" />
</template>