<view class="empty-box" hidden="{{!showEmpty}}"> <image src="../../../images/empty-list.png" mode="widthFix"></image> <text>暂未查询到相关数据~~</text> </view> 转vue格式
时间: 2023-10-05 21:08:19 浏览: 181
Android开发实现自定义新闻加载页面功能实例
以下是转换后的Vue代码:
```html
<template>
<view :hidden="!showEmpty" class="empty-box">
<image src="../../../images/empty-list.png" mode="widthFix"></image>
<text>暂未查询到相关数据~~</text>
</view>
</template>
```
阅读全文