forked from quasarframework/quasar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInnerMinMax.vue
More file actions
85 lines (79 loc) · 1.41 KB
/
InnerMinMax.vue
File metadata and controls
85 lines (79 loc) · 1.41 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<template>
<div class="q-pa-md flex flex-center">
<q-knob
:min="5"
:max="10"
:inner-min="6"
v-model="value1"
show-value
size="50px"
:thickness="0.22"
color="teal"
track-color="grey-3"
class="q-ma-md"
/>
<q-knob
:min="55"
:max="90"
:inner-min="70"
:inner-max="85"
v-model="value2"
show-value
size="50px"
:thickness="0.22"
color="teal"
track-color="grey-3"
class="q-ma-md"
/>
<q-knob
:min="40"
:max="110"
:inner-min="50"
:inner-max="100"
v-model="value3"
show-value
size="50px"
:thickness="0.22"
color="teal"
track-color="grey-3"
class="q-ma-md"
/>
<q-knob
:min="20"
:max="70"
:inner-min="30"
:inner-max="60"
v-model="value4"
show-value
size="50px"
:thickness="0.22"
color="teal"
track-color="grey-3"
class="q-ma-md"
/>
<q-knob
:inner-max="75"
v-model="value5"
show-value
size="50px"
:thickness="0.22"
color="teal"
track-color="grey-3"
class="q-ma-md"
/>
</div>
</template>
<script>
import { ref } from 'vue'
export default {
setup () {
return {
value1: ref(7),
value2: ref(70),
value3: ref(80),
value4: ref(35),
value5: ref(70)
}
}
}
</script>