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

21 lines
621 B
Plaintext

<import src="/dist/quantity/index.wxml" />
<view class="container">
<view class="doc-title">QUANTITY</view>
<view style="padding: 40px 15px">
<template is="zan-quantity" data="{{ ...quantity1, componentId: 'quantity1' }}" />
</view>
<!-- 当最大值等于最小值时,组件不可用 -->
<view style="padding: 40px 15px ">
<template is="zan-quantity" data="{{ ...quantity2, componentId: 'quantity2' }}" />
</view>
<!-- small size -->
<view style="padding: 40px 15px ">
<template is="zan-quantity" data="{{ ...quantity3, componentId: 'quantity3', size: 'small' }}" />
</view>
</view>