forked from quasarframework/quasar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathList.vue
More file actions
34 lines (31 loc) · 888 Bytes
/
List.vue
File metadata and controls
34 lines (31 loc) · 888 Bytes
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
<template>
<div class="q-pa-md flex justify-center">
<div style="max-width: 90%; width: 300px;">
<q-intersection
v-for="index in 60"
:key="index"
transition="flip-right"
class="example-item"
>
<q-item clickable v-ripple>
<q-item-section avatar>
<q-avatar color="primary" text-color="white">
Q
</q-avatar>
</q-item-section>
<q-item-section>
<q-item-label>Contact #{{ index }}</q-item-label>
<q-item-label caption lines="1">some@email.com</q-item-label>
</q-item-section>
<q-item-section side>
<q-icon name="chat_bubble" color="green" />
</q-item-section>
</q-item>
</q-intersection>
</div>
</div>
</template>
<style lang="sass" scoped>
.example-item
height: 56px
</style>