Skip to content

Commit 1c4958c

Browse files
Update example layout
1 parent 529e86f commit 1c4958c

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

example/components/functional.vue

+11-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
<div class="row">
33
<div class="col-8">
44
<h3>Draggable</h3>
5-
65
<draggable
76
v-model="rows"
87
tag="v-layout"
@@ -28,7 +27,7 @@
2827
:key="item.title"
2928
xs4
3029
pa-3
31-
class="row"
30+
class="row-v"
3231
>
3332
<v-card style="height: 100px;">{{ item.title }}</v-card>
3433
</v-flex>
@@ -37,7 +36,11 @@
3736
</draggable>
3837
</div>
3938

40-
<rawDisplayer class="col-3" :value="rows" title="List" />
39+
<rawDisplayer
40+
class="col-3"
41+
:value="rows"
42+
title="List"
43+
/>
4144
</div>
4245
</template>
4346

@@ -89,6 +92,11 @@ export default {
8992
margin-top: 35px;
9093
}
9194
95+
.row-v {
96+
height: 150px;
97+
width: 200px;
98+
}
99+
92100
.ghost {
93101
opacity: 0.5;
94102
background: #c8ebfb;

0 commit comments

Comments
 (0)