{"id":22370226,"url":"https://github.com/itzvinoth/tiny-multi-select","last_synced_at":"2026-04-27T21:32:09.285Z","repository":{"id":65516560,"uuid":"143509857","full_name":"itzvinoth/tiny-multi-select","owner":"itzvinoth","description":"Simple multi-select component created using VueJS","archived":false,"fork":false,"pushed_at":"2019-01-30T15:06:55.000Z","size":17271,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-04T21:24:43.268Z","etag":null,"topics":["vue","vuejs"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/itzvinoth.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-08-04T08:00:59.000Z","updated_at":"2023-03-04T11:45:56.000Z","dependencies_parsed_at":"2023-01-26T22:31:37.402Z","dependency_job_id":null,"html_url":"https://github.com/itzvinoth/tiny-multi-select","commit_stats":null,"previous_names":["vinothkumarrenganathan/tiny-multi-select"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/itzvinoth/tiny-multi-select","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itzvinoth%2Ftiny-multi-select","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itzvinoth%2Ftiny-multi-select/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itzvinoth%2Ftiny-multi-select/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itzvinoth%2Ftiny-multi-select/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/itzvinoth","download_url":"https://codeload.github.com/itzvinoth/tiny-multi-select/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itzvinoth%2Ftiny-multi-select/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32356598,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-27T20:07:02.737Z","status":"ssl_error","status_checked_at":"2026-04-27T20:07:00.910Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["vue","vuejs"],"created_at":"2024-12-04T19:37:06.811Z","updated_at":"2026-04-27T21:32:09.268Z","avatar_url":"https://github.com/itzvinoth.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Description\n`tiny-multi-select` is a [Vue 2.0](https://vuejs.org) (vue multi select) plugin that allows you to select multiple values, much like [`vue-multiselect`](https://github.com/shentao/vue-multiselect). Right now it's in development stage. Still needs to update lot many things.\n\n\nFind the npm package [`link`](https://www.npmjs.com/package/tiny-multi-select)\n\n# Install and basic usage\n\n```sh\n$ npm install tiny-multi-select\n```\n\n### Demo\nFind the working [demo](https://codesandbox.io/s/xv1wv3mqoo).\n\n### For single select\n```\n\u003ctemplate\u003e\n  \u003cdiv\u003e\n    \u003cmulti-select :options=\"options\" s-value=\"sValue\" @clicked=\"onDropDownClick\" :multiple=\"false\" width=\"350\" track-by=\"name\" label=\"label\"\u003e\u003c/multi-select\u003e\n  \u003c/div\u003e\n\u003c/template\u003e\n\n\u003cscript\u003e\nimport MultiSelect from 'tiny-multi-select'\nexport default {\n  components: {\n    MultiSelect\n  },\n  data() {\n    return {\n      options: [\n      \t{ name: 'AF', label: 'Afghanistan' },\n        { name: 'BS', label: 'Bahamas' },\n        { name: 'FR', label: 'France' },\n        { name: 'IN', label: 'India' },\n        { name: 'MC', label: 'Monaco' },\n        { name: 'MN', label: 'Mongolia' },\n        { name: 'MV', label: 'Maldives' },\n        { name: 'PL', label: 'Poland' },\n        { name: 'SG', label: 'Singapore' },\n        { name: 'GB', label: 'United Kingdom' },\n        { name: 'US', label: 'United States' }\n      ],\n      sValue: {}\n    }\n  },\n  methods: {\n    onDropDownClick (value) {\n      this.sValue = value\n    }\n  }\n}\n\u003c/script\u003e\n```\n\n### For multiple select\n```\n\u003ctemplate\u003e\n  \u003cdiv\u003e\n    \u003cmulti-select :options=\"options\" :selected-values=\"selectedValues\" :multiple=\"true\" width=\"350\" track-by=\"name\" label=\"label\"\u003e\u003c/multi-select\u003e\n  \u003c/div\u003e\n\u003c/template\u003e\n\n\u003cscript\u003e\nimport MultiSelect from 'tiny-multi-select'\nexport default {\n  components: {\n    MultiSelect\n  },\n  data() {\n    return {\n      options: [\n      \t{ name: 'AF', label: 'Afghanistan' },\n        { name: 'BS', label: 'Bahamas' },\n        { name: 'FR', label: 'France' },\n        { name: 'IN', label: 'India' },\n        { name: 'MC', label: 'Monaco' },\n        { name: 'MN', label: 'Mongolia' },\n        { name: 'MV', label: 'Maldives' },\n        { name: 'PL', label: 'Poland' },\n        { name: 'SG', label: 'Singapore' },\n        { name: 'GB', label: 'United Kingdom' },\n        { name: 'US', label: 'United States' }\n      ],\n      // set with initial selected values as like this [{ name: 'PL', label: 'Poland' }]\n      selectedValues: []\n    }\n  }\n}\n\u003c/script\u003e\n```\n\n## Build Setup or Contributing\n\n``` bash\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\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fitzvinoth%2Ftiny-multi-select","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fitzvinoth%2Ftiny-multi-select","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fitzvinoth%2Ftiny-multi-select/lists"}