Skip to content

开关选择器 Switch

开关选择器组件。

兼容性

  • 兼容:✅
  • 不兼容:❌
  • 未知:❔
H5安卓苹果微信支付宝百度抖音QQ快手飞书京东
小红书鸿蒙360华为快应用快应用联盟

插件市场地址

DCloud 插件市场地址

基础使用

  • 通过 v-model 属性绑定开关状态。
vue
<template>
    <pure-switch v-model="isChecked"></pure-switch>
</template>

状态文字

  • 通过 openText 属性设置开启状态文字。
  • 通过 closeText 属性设置关闭状态文字。
vue
<template>
    <pure-switch v-model="isChecked" openText="开" closeText="关"></pure-switch>
</template>

状态图标

  • 通过 openIcon 属性设置开启状态图标。
  • 通过 closeIcon 属性设置关闭状态图标。
vue
<template>
    <pure-switch v-model="isChecked" openText="开" closeText="关" openIcon="__wancheng" closeIcon="__shibai"></pure-switch>
</template>

加载状态

  • 通过 loading 属性设置加载状态。
  • 通过 loadingIcon 属性设置加载状态图标。
vue
<template>
    <pure-switch v-model="isChecked" openText="开" closeText="关" loading></pure-switch>
    <pure-switch v-model="isChecked" openText="开" closeText="关" loading loadingIcon="__shalou"></pure-switch>
</template>

禁用状态

  • 通过 disabled 属性设置禁用状态。
vue
<template>
    <pure-switch v-model="isChecked" openText="开" closeText="关" openIcon="__wancheng" closeIcon="__shibai" disabled></pure-switch>
</template>

异步控制

  • 通过 async 属性开启/关闭异步控制。
  • 通过 @asyncChange 事件监听异步控制事件。
vue
<template>
    <pure-switch
        v-model="isChecked"
        openText="开"
        closeText="关"
        openIcon="__wancheng"
        closeIcon="__shibai"
        async
        :loading="loading"
        @asyncChange="handleAsyncChange"
    ></pure-switch>
</template>

主题

  • 通过添加辅助类使用。
vue
<template>
    <pure-switch v-model="isChecked" class="pure-switch-primary"></pure-switch>
    <pure-switch v-model="isChecked" class="pure-switch-success"></pure-switch>
    <pure-switch v-model="isChecked" class="pure-switch-danger"></pure-switch>
    <pure-switch v-model="isChecked" class="pure-switch-warning"></pure-switch>
    <pure-switch v-model="isChecked" class="pure-switch-info"></pure-switch>
</template>

Props

属性名说明类型默认值可选值版本
v-model开关状态Booleanfalsetrue+1.0.0
openText开启状态文字String""-+1.0.0
closeText关闭状态文字String""-+1.0.0
openIcon开启状态图标名称,同图标组件(Icon)的 name 属性,参考String""-+1.0.0
closeIcon关闭状态图标名称,同图标组件(Icon)的 name 属性,参考String""-+1.0.0
loading是否显示加载状态Booleanfalsetrue+1.0.0
loadingIcon加载图标名称,同图标组件(Icon)的 name 属性,参考String__loading-+1.0.0
disabled禁用状态Booleanfalsetrue+1.0.0
disabledClass禁用类名Stringpure-disabled-+1.0.0
loading加载状态Booleanfalsetrue+1.0.0
loadingText加载提示文本String""-+1.0.0
async是否开启异步控制Booleanfalsetrue+1.0.0

Event

事件名说明回调参数版本
asyncChange开启异步控制后的监听事件-+1.0.0

基于 MIT 许可发布