平台兼容性
ActionSheet 使用说明
demo
props
show:控制展示
title:控制标题
event
@close 关闭时候触发
<template>
<ActionSheet
:show="show"
@close="ActionClose"
:title="title"
>
<view class="add-body">
根据需求自定义
</view>
<view class='add-address'
>新增地址</view>
</ActionSheet>
</template>
<script>
export default{
data(){
return{
show:false,
title:'选择收货地址'
}
}
}
</script>