mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
24 lines
764 B
Plaintext
24 lines
764 B
Plaintext
<import src="/dist/switch/index.wxml" />
|
|
|
|
<view class="container">
|
|
|
|
<view class="doc-title zan-hairline--bottom">SWITCH</view>
|
|
|
|
<view class="zan-panel-title">同步开关</view>
|
|
<view class="zan-panel">
|
|
<template is="zan-switch" data="{{ ...sync, componentId: 'sync' }}" />
|
|
</view>
|
|
|
|
<view class="zan-panel-title">异步开关</view>
|
|
<view class="zan-panel">
|
|
<template is="zan-switch" data="{{ ...async, componentId: 'async' }}" />
|
|
</view>
|
|
|
|
<view class="zan-panel-title">开关不可用</view>
|
|
<view class="zan-panel">
|
|
<template is="zan-switch" data="{{ checked: false, disabled: true, componentId: 'switch3' }}" />
|
|
<template is="zan-switch" data="{{ checked: true, disabled: true, componentId: 'switch4' }}" />
|
|
</view>
|
|
|
|
</view>
|