forked from quasarframework/quasar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndeterminate.vue
More file actions
58 lines (53 loc) · 1.05 KB
/
Indeterminate.vue
File metadata and controls
58 lines (53 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<template>
<div class="q-pa-md flex flex-center">
<q-circular-progress
indeterminate
size="50px"
color="lime"
class="q-ma-md"
/>
<q-circular-progress
indeterminate
size="90px"
:thickness="0.2"
color="lime"
center-color="grey-8"
track-color="transparent"
class="q-ma-md"
/>
<q-circular-progress
indeterminate
size="45px"
:thickness="1"
color="grey-8"
track-color="lime"
class="q-ma-md"
/>
<q-circular-progress
indeterminate
size="50px"
:thickness="0.22"
color="lime"
track-color="grey-3"
class="q-ma-md"
/>
<q-circular-progress
indeterminate
size="75px"
:thickness="0.6"
color="lime"
center-color="grey-8"
class="q-ma-md"
/>
<q-circular-progress
indeterminate
size="40px"
:thickness="0.4"
font-size="50px"
color="lime"
track-color="grey-3"
center-color="grey-8"
class="q-ma-md"
/>
</div>
</template>