mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
25 lines
597 B
Plaintext
25 lines
597 B
Plaintext
<import src="/dist/toptips/index.wxml" />
|
|
|
|
<view class="container">
|
|
|
|
<view class="doc-title zan-hairline--bottom">SELECT</view>
|
|
|
|
<zan-panel title='基本用法'>
|
|
<zan-select
|
|
items="{{ items }}"
|
|
checkedValue="{{ checked.base }}"
|
|
bind:change="handleFieldChange"
|
|
/>
|
|
</zan-panel>
|
|
|
|
<zan-panel title='自定义高亮颜色'>
|
|
<zan-select
|
|
items="{{ items }}"
|
|
checkedValue="{{ checked.base }}"
|
|
activeColor="{{ activeColor }}"
|
|
bind:change="handleFieldChange"
|
|
/>
|
|
</zan-panel>
|
|
|
|
<template is="zan-toptips" data="{{ zanTopTips }}"></template>
|