Skip to content

Commit 6011cf7

Browse files
committed
drag from outside example merge
1 parent f8cefd0 commit 6011cf7

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

examples/09-dynamic-add-remove.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ <h1>Vue Grid Layout Example 9 - Dynamic Add/Remove</h1>
2424
<a href="https://github.com/jbaysolutions/vue-grid-layout">View project on Github</a>
2525
<br />
2626
<a href="08-responsive-predefined-layouts.html">Previous example: Responsive - predefined layouts</a>
27+
<br />
28+
<a href="10-drag-from-outside.html">Next example: Drag from outside</a>
2729

2830
<div id="app" style="width: 100%;">
2931
<!--<pre>{{ $data | json }}</pre>-->

examples/09-drag-from-outside.html renamed to examples/10-drag-from-outside.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<title>Vue Grid Layout Example 09 - Drag From Outside</title>
66
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no">
77
<link rel="stylesheet" href="app.css">
8-
8+
99
<style>
1010
.droppable-element {
1111
width: 150px;
@@ -16,14 +16,14 @@
1616
padding: 10px;
1717
}
1818
</style>
19-
19+
2020
</head>
2121
<body @dragover="dragover">
2222
<h1>Vue Grid Layout Example 09 - Drag From Outside</h1>
2323

2424
<a href="https://github.com/jbaysolutions/vue-grid-layout">View project on Github</a>
2525
<br/>
26-
<a href="08-responsive-predefined-layouts.html">Previous example: Responsive Predefined Layouts </a>
26+
<a href="09-dynamic-add-remove.html">Previous example: Dynamic Add/Remove</a>
2727
<br/>
2828
<!--<a href="">Next example: </a>-->
2929

@@ -57,8 +57,8 @@ <h1>Vue Grid Layout Example 09 - Drag From Outside</h1>
5757
:is-resizable="true"
5858
:vertical-compact="true"
5959
:use-css-transforms="true"
60-
61-
>
60+
61+
>
6262
<grid-item :key="item.i" v-for="item in layout"
6363
:x="item.x"
6464
:y="item.y"
@@ -73,6 +73,6 @@ <h1>Vue Grid Layout Example 09 - Drag From Outside</h1>
7373
</div>
7474
<script src="vue.min.js"></script>
7575
<script src="../dist/vue-grid-layout.umd.min.js"></script>
76-
<script src="09-drag-from-outside.js"></script>
76+
<script src="10-drag-from-outside.js"></script>
7777
</body>
7878
</html>
File renamed without changes.

0 commit comments

Comments
 (0)