Skip to content

Commit 62df384

Browse files
committed
vue version bump
1 parent 2b4d6a2 commit 62df384

File tree

4 files changed

+23
-6
lines changed

4 files changed

+23
-6
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 2.3.9 (September ?, 2020)
4+
5+
* Fix plugin installation (fixes #311) (thanks [yfwz100](https://github.com/yfwz100))
6+
7+
38
## 2.3.8 (July 31, 2020)
49

510
* Make margins reactive (thanks [yfwz100](https://github.com/yfwz100))

docs/README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,9 @@
1-
# vue-grid-layout
1+
# vue-grid-layout
2+
3+
4+
https://github.com/wearebraid/vueformulate.com/tree/master/docs
5+
6+
7+
# emit responsiveLayoutUpdatedEvent?
8+
9+
https://github.com/jbaysolutions/vue-grid-layout/compare/master...wzquyin:master

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@
3838
"node-sass": "^4.13.0",
3939
"rimraf": "^2.6.2",
4040
"sass-loader": "^7.0.1",
41-
"vue": "^2.6.10",
42-
"vue-template-compiler": "^2.6.10",
41+
"vue": "^2.6.12",
42+
"vue-template-compiler": "^2.6.12",
4343
"webpack-bundle-analyzer": "^3.4.1"
4444
}
4545
}

src/App.vue

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,10 @@
6161
:w="item.w"
6262
:h="item.h"
6363
:i="item.i"
64+
:min-x="item.minX"
65+
:max-x="item.maxX"
66+
:min-y="item.minY"
67+
:max-y="item.maxY"
6468
@resize="resize"
6569
@move="move"
6670
@resized="resized"
@@ -110,9 +114,9 @@
110114
//var eventBus = require('./eventBus');
111115
112116
let testLayout = [
113-
{"x":0,"y":0,"w":2,"h":2,"i":"0", resizable: true, draggable: true, static: false},
117+
{"x":0,"y":0,"w":2,"h":2,"i":"0", resizable: true, draggable: true, static: false, minY: 0, maxY: 2},
114118
{"x":2,"y":0,"w":2,"h":4,"i":"1", resizable: null, draggable: null, static: true},
115-
{"x":4,"y":0,"w":2,"h":5,"i":"2", resizable: false, draggable: false, static: false},
119+
{"x":4,"y":0,"w":2,"h":5,"i":"2", resizable: false, draggable: false, static: false, minX: 4, maxX: 4},
116120
{"x":6,"y":0,"w":2,"h":3,"i":"3", resizable: false, draggable: false, static: false},
117121
{"x":8,"y":0,"w":2,"h":3,"i":"4", resizable: false, draggable: false, static: false},
118122
{"x":10,"y":0,"w":2,"h":3,"i":"5", resizable: false, draggable: false, static: false},
@@ -121,7 +125,7 @@
121125
{"x":4,"y":5,"w":2,"h":5,"i":"8", resizable: false, draggable: false, static: false},
122126
{"x":6,"y":3,"w":2,"h":4,"i":"9", resizable: false, draggable: false, static: true},
123127
{"x":8,"y":4,"w":2,"h":4,"i":"10", resizable: false, draggable: false, static: false},
124-
{"x":10,"y":4,"w":2,"h":4,"i":"11", resizable: false, draggable: false, static: false},
128+
{"x":10,"y":4,"w":2,"h":4,"i":"11", resizable: false, draggable: false, static: false, minY: 4},
125129
{"x":0,"y":10,"w":2,"h":5,"i":"12", resizable: false, draggable: false, static: false},
126130
{"x":2,"y":10,"w":2,"h":5,"i":"13", resizable: false, draggable: false, static: false},
127131
{"x":4,"y":8,"w":2,"h":4,"i":"14", resizable: false, draggable: false, static: false},

0 commit comments

Comments
 (0)