## 组件 微信小程序内使用 ant-tabs ## 基础库版本 微信小程序 3.8.11 ## 设备机型 ## 手机系统 ## APP 微信小程序 ## 组件库版本 3.2.2 ## 预期行为 ant-tabsitem中没有content,使用<view>在tabs内部添加内容无法正常展示 ## 复现步骤 <img width="1712" height="1286" alt="Image" src="https://github.com/user-attachments/assets/0630ad39-2f0d-484d-a66f-481199d5b0d4" /> <img width="2012" height="1020" alt="Image" src="https://github.com/user-attachments/assets/f5525251-4478-4221-83b7-aeb208802bdf" /> ## 复现 demo <ant-tabs items="{{ items }}" direction="vertical"> <view class="content">111111</view> </ant-tabs> data: { items: new Array(5).fill(0).map((_, i) => { return { title: `第${i + 1}项`, }; }), },