mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
* change example dir * Update README.md 更新预览教程 * 新增 layout 组件 * exclude example * change .wxss -> .pcss * 脚本目录更名为 scripts
24 lines
743 B
Plaintext
24 lines
743 B
Plaintext
<import src="/dist/switch/index.wxml" />
|
|
|
|
<view class="container">
|
|
|
|
<view class="doc-title">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>
|