1 Star 0 Fork 501

Zander/BookChatApp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
loading.vue 562 Bytes
一键复制 编辑 原始数据 按行查看 历史
<template>
<view class="loading">
<view v-if="loading">
<view class='text-center font-lv3 color-grey pdb-30'>
<image src='/static/images/loading.png'></image>
</view>
</view>
<view v-else class='text-center font-lv4 color-grey pdb-30'>{{tips}}</view>
</view>
</template>
<script>
export default {
props:{
loading: {
type:Boolean,
default: true
},
tips: {
type: String,
default: ''
}
}
}
</script>
<style>
.loading{padding-bottom: 30upx;padding-top:30upx;}
.loading image{width: 32px;height: 32px;}
</style>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/ZhgPhh/BookChatApp.git
git@gitee.com:ZhgPhh/BookChatApp.git
ZhgPhh
BookChatApp
BookChatApp
master

搜索帮助