Skip to content

Commit 7829ce5

Browse files
committed
Use loading message instead of circle
1 parent a3cbeb9 commit 7829ce5

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

src/App.vue

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
<template>
22
<div>
3-
<loading :active="isLoading" />
3+
<loading :active="isLoading" :opacity="0.9">
4+
<div class="loading-content">
5+
<span>Loading...</span>
6+
<p>Please wait until we get all the data.</p>
7+
</div>
8+
</loading>
49
<AppNav />
510
<div class="container">
611
<router-view />
@@ -43,6 +48,11 @@ export default {
4348
<style lang="scss" scoped>
4449
@import "./assets/global";
4550
51+
.loading-content {
52+
display: flex;
53+
flex-direction: column;
54+
align-items: center;
55+
}
4656
.md-content {
4757
padding: 16px;
4858
height: 100%;

0 commit comments

Comments
 (0)