mirror of
https://gitee.com/java110/WechatOwnerService.git
synced 2026-02-23 13:26:40 +08:00
7 lines
539 B
Vue
7 lines
539 B
Vue
<template name="toolbar">
|
|
<view v-if="showToolbar" class="van-picker__toolbar van-hairline--top-bottom toolbar-class">
|
|
<view class="van-picker__cancel" hover-class="van-picker__cancel--hover" hover-stay-time="70" data-type="cancel" @tap="emit">{{cancelButtonText}}</view>
|
|
<view v-if="title" class="van-picker__title van-ellipsis">{{title}}</view>
|
|
<view class="van-picker__confirm" hover-class="van-picker__confirm--hover" hover-stay-time="70" data-type="confirm" @tap="emit">{{confirmButtonText}}</view>
|
|
</view>
|
|
</template> |