123456789101112131415161718192021222324252627282930313233343536 |
- <template>
- <view class="py-4">
- <view class="centerd">
- <view class="fs-40 iconfont kongjilu" style="color: #ddd;">
- </view>
-
- </view>
- <view class="text-center text-gry mt-1">
- {{title}}
- </view>
- </view>
- </template>
- <script>
- export default {
- props:{
- title:{
- type:String,
- default:''
- }
- },
- data() {
- return {
-
- }
- },
- methods: {
-
- }
- }
- </script>
- <style>
- </style>
|