1234567891011121314151617181920212223242526272829303132 |
- <template>
- <div class="loading-wrap">
- <text>{{text}}</text>
- </div>
- </template>
- <script>
- export default {
- props: {
- text: {
- type: String,
- default: "加载ing..."
- }
- },
- }
- </script>
- <style lang="less" scoped>
- .loading-wrap {
- flex: 1;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- margin-top: 80px;
- text {
- font-size: 26px;
- color: #999;
- }
- }
- </style>
|