We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 529e86f commit 1c4958cCopy full SHA for 1c4958c
example/components/functional.vue
@@ -2,7 +2,6 @@
2
<div class="row">
3
<div class="col-8">
4
<h3>Draggable</h3>
5
-
6
<draggable
7
v-model="rows"
8
tag="v-layout"
@@ -28,7 +27,7 @@
28
27
:key="item.title"
29
xs4
30
pa-3
31
- class="row"
+ class="row-v"
32
>
33
<v-card style="height: 100px;">{{ item.title }}</v-card>
34
</v-flex>
@@ -37,7 +36,11 @@
37
36
</draggable>
38
</div>
39
40
- <rawDisplayer class="col-3" :value="rows" title="List" />
+ <rawDisplayer
+ class="col-3"
41
+ :value="rows"
42
+ title="List"
43
+ />
44
45
</template>
46
@@ -89,6 +92,11 @@ export default {
89
92
margin-top: 35px;
90
93
}
91
94
95
+.row-v {
96
+ height: 150px;
97
+ width: 200px;
98
+}
99
+
100
.ghost {
101
opacity: 0.5;
102
background: #c8ebfb;
0 commit comments