Yao e4dfc9e48c
[new feature] Layout: 新增 layout 组件 (#43)
* change example dir

* Update README.md

更新预览教程

* 新增 layout 组件

* exclude example

* change .wxss -> .pcss

* 脚本目录更名为 scripts
2017-10-31 17:41:31 +08:00

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>