{"id":13504642,"url":"https://github.com/mayank091193/quasar-draggable-tree","last_synced_at":"2025-03-29T22:30:53.516Z","repository":{"id":42629046,"uuid":"242372143","full_name":"mayank091193/quasar-draggable-tree","owner":"mayank091193","description":"QDraggableTree is a component that displays hierarchical data with drag and drop ability.","archived":false,"fork":false,"pushed_at":"2023-07-05T06:34:24.000Z","size":709,"stargazers_count":75,"open_issues_count":5,"forks_count":19,"subscribers_count":6,"default_branch":"next","last_synced_at":"2024-05-23T09:33:19.263Z","etag":null,"topics":["app-extension","javascript","quasar-application","quasarframework","vuejs"],"latest_commit_sha":null,"homepage":"https://next-quasar-draggable-tree.netlify.com/","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/mayank091193.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}},"created_at":"2020-02-22T16:19:22.000Z","updated_at":"2024-02-27T13:09:31.000Z","dependencies_parsed_at":"2023-01-29T13:15:28.892Z","dependency_job_id":"d3cc9d42-b7b6-462a-b798-cb295707096c","html_url":"https://github.com/mayank091193/quasar-draggable-tree","commit_stats":{"total_commits":22,"total_committers":5,"mean_commits":4.4,"dds":0.5454545454545454,"last_synced_commit":"d2a0dbea70c7961b04648d578a7c73f009333486"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mayank091193%2Fquasar-draggable-tree","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mayank091193%2Fquasar-draggable-tree/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mayank091193%2Fquasar-draggable-tree/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mayank091193%2Fquasar-draggable-tree/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mayank091193","download_url":"https://codeload.github.com/mayank091193/quasar-draggable-tree/tar.gz/refs/heads/next","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245416006,"owners_count":20611653,"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":["app-extension","javascript","quasar-application","quasarframework","vuejs"],"created_at":"2024-08-01T00:00:48.673Z","updated_at":"2025-03-29T22:30:53.494Z","avatar_url":"https://github.com/mayank091193.png","language":"JavaScript","funding_links":["https://github.com/sponsors/mayank091193"],"categories":["Awesome Quasar [![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome)"],"sub_categories":["Tutorials"],"readme":"# QDraggableTree (Supports Vue3)\n\nQDraggableTree is a [Quasar App Extension](https://quasar.dev/app-extensions/introduction).  It is a component that displays hierarchical data with drag and drop ability.\n\n# Support\n\nIf this helped you, you can contribute to this project by supporting me:\n\n### [💜 Support my open-source work on GitHub](https://github.com/sponsors/mayank091193)\n\nPlease check out my sponsor page.\n\n(GitHub currently **doubles your support**! So if you support me with $5/mo, I will get $10 instead! 😉)\n\nThank you very much!!\n\n### NPM Package: https://www.npmjs.com/package/quasar-app-extension-qdraggabletree\n\n## Install\n\nTo add this App Extension to your Quasar application, run the following (in your Quasar app folder):\n\n```bash\nquasar ext add qdraggabletree\n```\n\n### After version 0.0.4, it is mandatory to have ```children``` object (Ex. ```children: []```) even if the item has no children present.\n\n# Uninstall\nTo remove this App Extension from your Quasar application, run the following (in your Quasar app folder):\n\n```\nquasar ext remove qdraggabletree\n```\n\n# Defining the data\n\n\n    \n        [\n            {\n                id: 1,\n                label: 'Satisfied customers',\n                children: [\n                    {\n                        id: 2,\n                        label: 'Good food',\n                        children: [\n                            {\n                                id: 3,\n                                label: 'Quality ingredients',\n                                children: [],\n                            },\n                            {\n                                id: 4,\n                                label: 'Good recipe',\n                                children: [],\n                            }\n                        ]\n                    },\n                    {\n                        id: 5,\n                        label: 'Good service',\n                        children: [\n                            {id: 6, label: 'Prompt attention', children: [],},\n                            {id: 7, label: 'Professional waiter', children: [],}\n                        ]\n                    },\n                    {\n                        id: 8,\n                        label: 'Pleasant surroundings',\n                        children: [\n                            {id: 9, label: 'Happy atmosphere', children: [],},\n                            {id: 10, label: 'Good table presentation', children: [],},\n                            {id: 11, label: 'Pleasing decor', children: [],}\n                        ]\n                    }\n                ]\n            }\n        ]\n\n# Source\n\ncan be found [here](https://github.com/mayank091193/quasar-draggable-tree).\n\n# Docs\n\ncan be found [here](https://next-quasar-draggable-tree.netlify.com).\n\n# Examples\n\ncan be found [here](https://next-quasar-draggable-tree.netlify.com).\n\n# Demo Project.\n\ncan be found [here](https://github.com/mayank091193/quasar-draggable-tree/tree/next).\n\n\n# Roadmap\n\nDefault Expansion\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmayank091193%2Fquasar-draggable-tree","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmayank091193%2Fquasar-draggable-tree","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmayank091193%2Fquasar-draggable-tree/lists"}