Yao ce5559a57e
[improvement] 部分组件边框实现修改 (#87)
* 使用超细边框

* 部分组件切换为 hairline

* 文档 边框替换
2017-12-23 14:25:41 +08:00

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>