{"id":15295053,"url":"https://github.com/el-jacko/vue-editortable","last_synced_at":"2025-11-07T07:04:32.477Z","repository":{"id":57395734,"uuid":"83800489","full_name":"el-jacko/vue-editortable","owner":"el-jacko","description":"A Vue.js editable table component","archived":false,"fork":false,"pushed_at":"2018-08-08T22:58:04.000Z","size":77,"stargazers_count":41,"open_issues_count":1,"forks_count":11,"subscribers_count":7,"default_branch":"master","last_synced_at":"2025-03-20T23:45:57.838Z","etag":null,"topics":["edit","editable","table","tableview","vue","vue-cli","vue-editortable","vue-resource","vuejs","vuejs2"],"latest_commit_sha":null,"homepage":"","language":"Vue","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/el-jacko.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-03-03T13:24:18.000Z","updated_at":"2023-10-17T00:40:34.000Z","dependencies_parsed_at":"2022-09-09T16:52:08.201Z","dependency_job_id":null,"html_url":"https://github.com/el-jacko/vue-editortable","commit_stats":null,"previous_names":[],"tags_count":15,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/el-jacko%2Fvue-editortable","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/el-jacko%2Fvue-editortable/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/el-jacko%2Fvue-editortable/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/el-jacko%2Fvue-editortable/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/el-jacko","download_url":"https://codeload.github.com/el-jacko/vue-editortable/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248741146,"owners_count":21154251,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["edit","editable","table","tableview","vue","vue-cli","vue-editortable","vue-resource","vuejs","vuejs2"],"created_at":"2024-09-30T17:08:26.173Z","updated_at":"2025-11-07T07:04:32.398Z","avatar_url":"https://github.com/el-jacko.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Important\nDue to lack of time this project is on hold.\n\n## Support on Beerpay\nHey dude! Help me out for a couple of :beers:!\n\n[![Beerpay](https://beerpay.io/el-jacko/vue-editortable/badge.svg?style=beer-square)](https://beerpay.io/el-jacko/vue-editortable)  [![Beerpay](https://beerpay.io/el-jacko/vue-editortable/make-wish.svg?style=flat-square)](https://beerpay.io/el-jacko/vue-editortable?focus=wish)\n\n# vue-editortable\n\n\u003e A Vue.js editable table component\n\u003e * Load/Save Data from/to a database\n\u003e * Create, Edit, Save, and Delete Data\n\u003e * Show/Hide columns\n\u003e * Keyboard Navigation \u0026 Shortcuts\n\u003e * SWIPE Design for wide tables\n\u003e * Simple Responsive Design with data attributes\n\u003e * Configurable\n\u003e * Multisorting\n\u003e * Searchfilter\n\u003e * dynamic Pagination\n\u003e * Validation\n\n---\n## Demo\n* Demo Pages are temporarely offline\n\n---\n## Dependencies\n\nOnly Vue.js, no other frameworks/libraries\n* Vue.js \u003e= 2.0 (tested with 2.2.2)\n* Vue-awesome Icons\n* Axios\n* validator\n\n---\n## Browser compatibility\n\nOnly tested browser by now is Chrome.\nFeel free to test and share your results.\n\n---\n## Installation\n\n#### If you use Webpack/Browserify\n\n### npm\n``` sh\nnpm install --save vue-editortable\n```\nImport globally in an App:\n\n``` javascript\nimport VueEditortable from \"vue-editortable\"\nVue.component('vue-editortable', VueEditortable)\n```\nImport locally in a component:\n\n``` javascript\nimport VueEditortable from \"vue-editortable\"\n// ...\ncomponents: {\n    VueEditortable,\n  }\n// ...\n```\n\n## Usage\n\n``` html\n\u003cvue-editortable :data=\"{ columns, options }\"\u003e\u003c/vue-editortable\u003e\n```\n``` javascript\n// ...\ndata() {\n      return {\n        columns: [\n          {\n            title: 'Id',\n            name: 'id',\n            editable: false,\n          },\n          {\n            title: 'Firstname',\n            name: 'firstname',\n            editable: true,\n          },\n          {\n            title: 'Lastname',\n            name: 'lastname',\n            editable: true,\n          },\n          {\n            title: 'Email',\n            name: 'email',\n            editable: true,\n          },\n        ],\n        options: {\n          showSearchFilter: true,\n          requests: {\n            allUrl: 'http://api.dev/api/users',\n          },\n        },\n      };\n    },\n// ...\n```\n\n---\n## Documentation\n\nYou will find a complete documentation [here](https://github.com/el-jacko/vue-editortable/wiki).\n\n---\n## Build Setup\n\n``` sh\n# install dependencies\nnpm install\n\n# serve with hot reload at localhost:8080\nnpm run dev\n\n# build for production with minification\nnpm run build\n\n# build for production and view the bundle analyzer report\nnpm run build --report\n```\n\nFor detailed explanation on how things work, checkout the [guide](http://vuejs-templates.github.io/webpack/) and [docs for vue-loader](http://vuejs.github.io/vue-loader).\n\n---\n## TODOs\n\nSome major TODOs:\n* error messages\n* implementing Datatypes\n* filter per columns\n* optional Modal before deleting\n* compatibility with CSS Frameworks (Bootstrap, Semantic, Foundation)\n* search \u0026 replace\n* edit multiple fields\n* statistics\n\n---\n## Contributions\n\nAll contributions are welcome!\n\n---\n## License\n\n[MIT](http://opensource.org/licenses/MIT)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fel-jacko%2Fvue-editortable","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fel-jacko%2Fvue-editortable","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fel-jacko%2Fvue-editortable/lists"}