You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+7-2Lines changed: 7 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,10 @@
2
2
3
3
All notable changes to this project will be documented in this file. Dates are displayed in UTC.
4
4
5
+
## Unreleased
6
+
7
+
- Incorporate ability to use Vue components as formatters
8
+
5
9
## [0.4.1] - 2020-07-14
6
10
7
11
- Update documentation
@@ -11,12 +15,12 @@ All notable changes to this project will be documented in this file. Dates are d
11
15
- Fix global import
12
16
- Add createRef, h, html methods
13
17
14
-
## [0.3.5] - 28 June 2020
18
+
## [0.3.5] - 2020-06-28
15
19
16
20
-:wrench: another vain attempt at getting release-it to work [`48919aa`](https://gitlab.com/selfagency/vue-gridjs/commit/48919aa36f757260ca6c15922fe2765a8b3864c5)
- fix css module issue and update to latest grid.js api [`5ab77cd`](https://gitlab.com/selfagency/vue-gridjs/commit/5ab77cd6dee279618d8ef23862c85570464bc159)
@@ -26,3 +30,4 @@ All notable changes to this project will be documented in this file. Dates are d
Copy file name to clipboardExpand all lines: README.md
+55-18Lines changed: 55 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -71,36 +71,40 @@ Refer to [Grid.js documentation](https://gridjs.io/docs/config/) for specific co
71
71
</script>
72
72
```
73
73
74
-
### Grid.js Helper Functions
74
+
### Helper Functions
75
75
76
76
If you install the component globally, rather than importing it locally, the following helpers are added to the Vue prototype and are available globally.
77
77
78
-
#### `this.$gridjs.createRef`
78
+
#### `this.$gridjs.uuid`
79
79
80
-
Returns a [reference to the Grid.js instance](https://gridjs.io/docs/examples/stock-market).
80
+
Returns a unique identifier that can be used to reference the current cell.
81
81
82
-
Example:
82
+
Usage:
83
83
84
84
```js
85
-
constref=this.$gridjs.createRef
85
+
constref=this.$gridjs.uuid()
86
86
```
87
87
88
88
#### `this.$gridjs.h`
89
89
90
90
Renders a [Preact virtual DOM instance](https://gridjs.io/docs/examples/virtual-dom).
0 commit comments