You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
340 B
28 lines
340 B
<template> |
|
<view class="loadStatus-box">{{loadStatus}}</view> |
|
</template> |
|
|
|
<script> |
|
export default{ |
|
props: { |
|
loadStatus: { |
|
type: String, |
|
default: '' |
|
} |
|
}, |
|
data(){ |
|
return { |
|
|
|
} |
|
}, |
|
} |
|
</script> |
|
|
|
<style> |
|
.loadStatus-box{ |
|
text-align: center; |
|
font-size: 28rpx; |
|
color: #000; |
|
padding: 30rpx 0; |
|
} |
|
</style>
|
|
|