<view class="empty-box" hidden="{{!showEmpty}}"> <image src="../../../images/empty-list.png" mode="widthFix"></image> <text>暂未查询到相关数据~~</text> </view> 转vue格式
时间: 2023-10-05 15:08:19 浏览: 175
LoadingLayout-一个可以控制页面4种加载状态的控件.zip
以下是转换后的Vue代码:
```html
<template>
<view :hidden="!showEmpty" class="empty-box">
<image src="../../../images/empty-list.png" mode="widthFix"></image>
<text>暂未查询到相关数据~~</text>
</view>
</template>
```
阅读全文