forked from quasarframework/quasar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHorizontalMoreInvolved.vue
More file actions
124 lines (107 loc) · 3.15 KB
/
HorizontalMoreInvolved.vue
File metadata and controls
124 lines (107 loc) · 3.15 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<template>
<div class="q-pa-md row items-start q-gutter-md">
<q-card class="my-card" flat bordered>
<q-card-section horizontal>
<q-card-section class="q-pt-xs">
<div class="text-overline">Overline</div>
<div class="text-h5 q-mt-sm q-mb-xs">Title</div>
<div class="text-caption text-grey">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
</div>
</q-card-section>
<q-card-section class="col-5 flex flex-center">
<q-img
class="rounded-borders"
src="https://cdn.quasar.dev/img/parallax2.jpg"
/>
</q-card-section>
</q-card-section>
<q-separator />
<q-card-actions>
<q-btn flat round icon="event" />
<q-btn flat>
7:30PM
</q-btn>
<q-btn flat color="primary">
Reserve
</q-btn>
</q-card-actions>
</q-card>
<q-card class="my-card" flat bordered>
<q-item>
<q-item-section avatar>
<q-avatar>
<img src="https://cdn.quasar.dev/img/boy-avatar.png">
</q-avatar>
</q-item-section>
<q-item-section>
<q-item-label>Title</q-item-label>
<q-item-label caption>
Subhead
</q-item-label>
</q-item-section>
</q-item>
<q-separator />
<q-card-section horizontal>
<q-card-section>
{{ lorem }}
</q-card-section>
<q-separator vertical />
<q-card-section class="col-4">
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
</q-card-section>
</q-card-section>
</q-card>
<q-card class="my-card">
<q-card-section horizontal>
<q-img
class="col-5"
src="https://cdn.quasar.dev/img/parallax1.jpg"
/>
<q-card-section>
{{ lorem }}
</q-card-section>
</q-card-section>
<q-separator />
<q-card-actions>
<q-btn flat round icon="event" />
<q-btn flat>
5:30PM
</q-btn>
<q-btn flat>
7:00PM
</q-btn>
<q-btn flat color="primary">
Reserve
</q-btn>
</q-card-actions>
</q-card>
<q-card class="my-card">
<q-card-section horizontal>
<q-img
class="col"
src="https://cdn.quasar.dev/img/parallax2.jpg"
/>
<q-card-actions vertical class="justify-around">
<q-btn flat round color="red" icon="favorite" />
<q-btn flat round color="accent" icon="bookmark" />
<q-btn flat round color="primary" icon="share" />
</q-card-actions>
</q-card-section>
</q-card>
</div>
</template>
<script>
export default {
setup () {
return {
lorem: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'
}
}
}
</script>
<style lang="sass" scoped>
.my-card
width: 100%
max-width: 350px
</style>