自定义组件 solt位置不对
- 当前 Bug 的表现(可附上截图)
solt 位置不合期望 真机和开发工具均为下图表现
- 预期表现
- 复现路径
- 提供一个最简复现 Demo
<view class="alert-mask" hidden="{{!show}}">
<view class="popup-warp">
<slot name="title"/>
<slot name="content"/>
<view class="popup-foot">
<button class="popup-btn active" type="default" bindtap="closePopup">确定</button>
</view>
</view>
</view>
<my-alert
show="{{show}}"
bind:closeModal="closeModal">
<view class="popup-title" slot="title">
<text>故障上报成功</text>
</view>
<view class="popup-content" slot="content">
<view>我们会及时处理您的故障上报</view>
<view>感谢您的关注与支持</view>
</view>
</my-alert>