mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
18 lines
577 B
Plaintext
18 lines
577 B
Plaintext
<import src="/dist/quantity/index.wxml" />
|
|
|
|
<view class="container">
|
|
<view style="padding: 40px 15px">
|
|
<template is="zui-quantity" data="{{ ...quantity1, componentId: 'quantity1' }}" />
|
|
</view>
|
|
|
|
<!-- 当最大值等于最小值时,组件不可用 -->
|
|
<view style="padding: 40px 15px ">
|
|
<template is="zui-quantity" data="{{ ...quantity2, componentId: 'quantity2' }}" />
|
|
</view>
|
|
|
|
<!-- small size -->
|
|
<view style="padding: 40px 15px ">
|
|
<template is="zui-quantity" data="{{ ...quantity3, componentId: 'quantity3', size: 'small' }}" />
|
|
</view>
|
|
</view>
|