Skip to content

Commit 6d906c0

Browse files
committed
migrate to gridjs-vue
1 parent 5496363 commit 6d906c0

File tree

13 files changed

+38
-45
lines changed

13 files changed

+38
-45
lines changed

README.md

Lines changed: 13 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,15 @@
1-
# Welcome to vue-gridjs 👋
1+
# gridjs-vue
22

3-
![Version](https://img.shields.io/badge/version-0.1.0-blue.svg?cacheSeconds=2592000)
4-
[![Documentation](https://img.shields.io/badge/documentation-yes-brightgreen.svg)](https://gitlab.com/selfagency/vue-gridjs)
5-
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](#)
6-
[![Twitter: selfagency_llc](https://img.shields.io/twitter/follow/selfagency_llc.svg?style=social)](https://twitter.com/selfagency_llc)
3+
![gridjs-vue](https://user-images.githubusercontent.com/2541728/84843482-ffc31c00-b015-11ea-95e8-dc6fb3931ad5.png)
74

85
A [Vue.js](https://vuejs.org) wrapper component for [Grid.js](https://grid.io)
96

10-
### 🏠 [Homepage](https://gitlab.com/selfagency/vue-gridjs)
7+
### 🏠 [Homepage](https://gridjs.io)
118

129
## Install
1310

1411
```sh
15-
yarn install vue-gridjs || npm install vue-gridjs
12+
yarn install gridjs-vue || npm install gridjs-vue
1613
```
1714

1815
## Component Registration
@@ -21,7 +18,7 @@ yarn install vue-gridjs || npm install vue-gridjs
2118

2219
```js
2320
/* in `main.js` or wherever you specify your global components */
24-
import Grid from 'vue-gridjs'
21+
import Grid from 'gridjs-vue'
2522

2623
Vue.use(Grid)
2724
```
@@ -30,7 +27,7 @@ Vue.use(Grid)
3027

3128
```vue
3229
<script>
33-
import Grid from 'vue-gridjs'
30+
import Grid from 'gridjs-vue'
3431
3532
export default {
3633
components: {
@@ -111,24 +108,20 @@ export default {
111108
}
112109
```
113110

114-
## Author
115-
116-
👤 **Daniel Sieradski <[email protected]>**
111+
## Known Issues
117112

118-
- Website: https://self.agency
119-
- Twitter: [@selfagency_llc](https://twitter.com/selfagency_llc)
120-
- Gitlab: [@selfagency](https://gitlab.com/selfagency)
113+
- The full API for updating the component's data has not yet been implemented.
114+
- The module currently loads CSS in the global scope. A future release will ensure that CSS is scoped solely to the component itself.
115+
- Presently, the `mermaid.css` stylesheet, is the only available theme for Grid.js.
121116

122117
## 🤝 Contributing
123118

119+
Originally authored by [Daniel Sieradski](https://twitter.com/self_agency).
120+
124121
Contributions, issues and feature requests are welcome!
125122

126-
Feel free to check [issues page](https://gitlab.com/selfagency/vue-gridjs/issues).
123+
Feel free to check [issues page](https://github.com/gridjs/gridjs-vue/issues).
127124

128125
## Show your support
129126

130127
Give a ⭐️ if this project helped you!
131-
132-
---
133-
134-
_This README was generated with ❤️ by [readme-md-generator](https://github.com/kefranabg/readme-md-generator)_

TODO.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
### TODOs
2+
| Filename | line # | TODO
3+
|:------|:------:|:------
4+
| [src/gridjs-vue.vue](src/gridjs-vue.vue#L2) | 2 | Figure out a way to scope CSS to the component rather than the global scope
5+
| [src/gridjs-vue.vue](src/gridjs-vue.vue#L3) | 3 | Implement full Grid.js API

bili.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ module.exports = {
1313
css: true,
1414
runtimeHelpers: true
1515
},
16-
scss: true,
16+
// scss: true,
1717
babel: {
1818
presets: ['vue', ['@babel/preset-env', { useBuiltIns: 'usage', corejs: 3 }]],
1919
runtimeHelpers: true,

dist/index.esm.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.esm.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)