Skip to content

Commit ac4e846

Browse files
committed
fix vetur references
1 parent 6d906c0 commit ac4e846

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Refer to [Grid.js documentation](https://gridjs.io/docs/config/) for specific co
5959
</template>
6060
6161
<script>
62-
import Grid from 'vue-gridjs'
62+
import Grid from 'gridjs-vue'
6363
6464
export default {
6565
name: 'MyTable',
@@ -70,7 +70,7 @@ export default {
7070
return {
7171
autoWidth: true / false, // boolean to automatically set table width
7272
data: {
73-
// object containing arrays columns & rows
73+
// object containing arrays of columns & rows
7474
cols: ['column 1', 'column 2'],
7575
rows: ['row 1: col 1', 'row 1: col 2']
7676
},

attributes.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,41 @@
11
{
2-
"vue-gridjs/autoWidth": {
2+
"gridjs-vue/autoWidth": {
33
"type": "boolean",
44
"description": "Boolean to automatically set table width. Default: true"
55
},
6-
"vue-gridjs/from": {
6+
"gridjs-vue/from": {
77
"type": "string",
88
"description": "String of HTML table selector. Default: undefined"
99
},
10-
"vue-gridjs/data": {
10+
"gridjs-vue/data": {
1111
"type": "object",
1212
"description": "Object containing arrays of columns [cols] & rows [rows]. Default: { cols: [''], rows: [''] }"
1313
},
14-
"vue-gridjs/language": {
14+
"gridjs-vue/language": {
1515
"type": "object",
1616
"description": "Localization dictionary object. Default: undefined"
1717
},
18-
"vue-gridjs/pagination": {
18+
"gridjs-vue/pagination": {
1919
"type": ["boolean", "object"],
2020
"description": "Boolean or pagination settings object. Default: true"
2121
},
22-
"vue-gridjs/search": {
22+
"gridjs-vue/search": {
2323
"type": ["boolean", "object"],
2424
"description": "Boolean or search settings object. Default: false"
2525
},
26-
"vue-gridjs/server": {
26+
"gridjs-vue/server": {
2727
"type": "object",
2828
"description": "Server settings object. Default: undefined"
2929
},
30-
"vue-gridjs/sort": {
30+
"gridjs-vue/sort": {
3131
"type": ["boolean", "object"],
3232
"description": "Boolean or sort settings object. Default: false"
3333
},
34-
"vue-gridjs/theme": {
34+
"gridjs-vue/theme": {
3535
"type": "string",
3636
"description": "String with name of theme. Default: 'mermaid'"
3737
},
38-
"vue-gridjs/width": {
38+
"gridjs-vue/width": {
3939
"type": "string",
4040
"description": "String with CSS width value. Default: undefined"
4141
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "gridjs-vue",
33
"description": "A Vue.js wrapper component for Grid.js",
4-
"version": "0.1.5",
4+
"version": "0.1.6",
55
"license": "MIT",
66
"private": false,
77
"main": "./dist/index.js",

tags.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"vue-gridjs": {
2+
"gridjs-vue": {
33
"attributes": ["autoWidth", "from", "data", "language", "pagination", "search", "server", "sort", "theme", "width"],
44
"description": "A Vue.js wrapper for Grid.js"
55
}

0 commit comments

Comments
 (0)