Skip to content

Commit 0f59d6a

Browse files
committed
changes and setup for 2.3.0 release
1 parent cc4e35a commit 0f59d6a

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

CHANGELOG.md

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

3+
## 2.3.0 (Oct 25, 2018)
4+
5+
* Responsive layout support (thanks [shpfive](https://github.com/shpfive))
6+
37
## 2.2.0 (Sep 10, 2018)
48

59
* changed project structure and build using Vue CLI

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
vue-grid-layout is a grid layout system, like [Gridster](http://dsmorse.github.io/gridster.js/), for Vue.js. **Heavily inspired in [React-Grid-Layout](https://github.com/STRML/react-grid-layout)**
88

9-
### **Current version:** 2.2.0 (Supports Vue 2.2+)
9+
### **Current version:** 2.3.0 (Supports Vue 2.2+)
1010

1111
### **For Vue 2.1.10 and below use version [2.1.3](https://github.com/jbaysolutions/vue-grid-layout/tree/2.1.3)**
1212
### **For Vue 1 use version [1.0.3](https://github.com/jbaysolutions/vue-grid-layout/tree/1.0.3)**
@@ -49,7 +49,7 @@ Also check https://cli.vuejs.org/guide/build-targets.html#library
4949
* Widgets may be added or removed without rebuilding grid
5050
* Layout can be serialized and restored
5151
* Automatic RTL support (resizing not working with RTL on 2.2.0)
52-
* Responsive Layout
52+
* Responsive
5353

5454

5555
## Getting Started
@@ -120,7 +120,7 @@ Include the browser-ready bundle (download from [releases](https://github.com/jb
120120
````html
121121

122122
<grid-layout
123-
:layout="layout"
123+
:layout.sync="layout"
124124
:col-num="12"
125125
:row-height="30"
126126
:is-draggable="true"
@@ -264,7 +264,7 @@ Include the browser-ready bundle (download from [releases](https://github.com/jb
264264
* required: `false`
265265
* default: { lg: 12, md: 10, sm: 6, xs: 4, xxs: 2 }
266266

267-
Defines columns foreach breakpoint width
267+
Defines number of columns for each breakpoint
268268

269269

270270
##### GridItem

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-grid-layout",
3-
"version": "2.2.0",
3+
"version": "2.3.0",
44
"description": "A draggable and resizable grid layout, as a Vue component.",
55
"keywords": [
66
"grid",

0 commit comments

Comments
 (0)