{"id":23045366,"url":"https://github.com/mykeels/vue-editable","last_synced_at":"2026-02-23T20:06:27.883Z","repository":{"id":93602210,"uuid":"110700547","full_name":"mykeels/vue-editable","owner":"mykeels","description":"A collection of editable Vue components","archived":false,"fork":false,"pushed_at":"2017-11-15T23:18:12.000Z","size":510,"stargazers_count":8,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-03T03:11:13.247Z","etag":null,"topics":["components","editable","javascript","vue"],"latest_commit_sha":null,"homepage":"https://mykeels.github.io/vue-editable","language":"JavaScript","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/mykeels.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-11-14T14:27:09.000Z","updated_at":"2024-07-11T17:42:30.000Z","dependencies_parsed_at":"2023-03-13T17:16:07.394Z","dependency_job_id":null,"html_url":"https://github.com/mykeels/vue-editable","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mykeels/vue-editable","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mykeels%2Fvue-editable","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mykeels%2Fvue-editable/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mykeels%2Fvue-editable/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mykeels%2Fvue-editable/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mykeels","download_url":"https://codeload.github.com/mykeels/vue-editable/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mykeels%2Fvue-editable/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267948900,"owners_count":24170561,"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","status":"online","status_checked_at":"2025-07-30T02:00:09.044Z","response_time":70,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["components","editable","javascript","vue"],"created_at":"2024-12-15T21:19:57.759Z","updated_at":"2026-02-23T20:06:22.864Z","avatar_url":"https://github.com/mykeels.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Vue Editable\n\nThis is a collection of editable Vue components.\n\nThe components are \"Editable\" because you can double-click them and get an input field to edit its content.\n\nAvailable editable components are:\n\n## Text Editable\n\n```html\n\u003ctext-editable \n    value=\"Hello World\" \n    class-name=\"text-editable\"\n    :is-edit=\"false\" \n    :on-change=\"doStuff\"\n    :multi=\"false\"\u003e\u003c/text-editable\u003e\n```\n\n| Prop       | Type     | Required | Description |\n| ---------- | --------:| --------:| ----:|\n| value      | String   | No       |  |\n| class-name | String   | No       |  |\n| is-edit    | Boolean  | No       |  |\n| multi      | Boolean  | No       |  |\n| on-change  | Function | No       |  |\n\n\n## Date Editable\n\n```html\n\u003cdate-editable \n    value=\"2017-01-01\" \n    format=\"YYYY-mm-DD\" \n    class-name=\"date-editable\"\u003e\u003c/date-editable\u003e\n```\n\n| Prop       | Type     | Required | Description |\n| ---------- | --------:| --------:| ----:|\n| value      | String   | Yes       |  |\n| format     | String   | Yes       |  |\n| class-name | String   | No       |  |\n| is-edit    | Boolean  | No       |  |\n| on-change  | Function | No       |  |\n\n## Select Editable\n\n```html\n\u003cselect-editable \n    value=\"Basic 1\" \n    :values=\"[\n                'Basic 1',\n                'Basic 2',\n                'Basic 3',\n                'Basic 4',\n                'Basic 5',\n                'Basic 6'\n                ]\" \n    class-name=\"select-editable\"\u003e\u003c/select-editable\u003e\n```\n\n| Prop       | Type     | Required | Description |\n| ---------- | --------:| --------:| ----:|\n| value      | String   | No       |  |\n| values     | Array    | Yes      |  |\n| class-name | String   | No       |  |\n| is-edit    | Boolean  | No       |  |\n| on-change  | Function | No       |  |\n\n## Time Editable\n\n```html\n\u003ctime-editable \n    value=\"09:00\" \n    class-name=\"time-editable\"\u003e\u003c/time-editable\u003e\n```\n\n| Prop       | Type     | Required | Description |\n| ---------- | --------:| --------:| ----:|\n| value      | String   | Yes      |  |\n| class-name | String   | No       |  |\n| is-edit    | Boolean  | No       |  |\n| multi      | Boolean  | No       |  |\n| on-change  | Function | No       |  |\n\n\n# How to use\n\nYou could use via the `\u003cscript\u003e` tag:\n\n```html\n\u003cscript src=\"https://raw.githubusercontent.com/mykeels/vue-editable/master/build/vue-editable.min.js\"\u003e\u003c/script\u003e\n```\n\nBe sure to register the components in your Vue Instance\n\n```html\n\u003cscript\u003e\n    new Vue({\n            el: '#app',\n            data: {\n                \n            },\n            components: {\n                'text-editable': VueEditable.TextEditable,\n                'date-editable': VueEditable.DateEditable,\n                'select-editable': VueEditable.SelectEditable,\n                'time-editable': VueEditable.TimeEditable\n            }\n        })\n\u003c/script\u003e\n```\n\n# Testing\n\nTesting is done with [Jest](https://github.com/facebook/jest). You can run tests with `npm test`","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmykeels%2Fvue-editable","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmykeels%2Fvue-editable","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmykeels%2Fvue-editable/lists"}