{"id":20537409,"url":"https://github.com/socheatsok78/vuetify-kbar","last_synced_at":"2026-03-07T06:32:35.391Z","repository":{"id":127665105,"uuid":"423105602","full_name":"socheatsok78/vuetify-kbar","owner":"socheatsok78","description":"[Incubation] A simple plug-n-play cmd+k interface for Vuetify","archived":false,"fork":false,"pushed_at":"2022-02-06T14:21:18.000Z","size":2845,"stargazers_count":12,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-14T01:37:23.011Z","etag":null,"topics":["cmdk","kbar","vuetify"],"latest_commit_sha":null,"homepage":"https://npmjs.com/@socheatsok78/vuetify-kbar","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/socheatsok78.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":"2021-10-31T09:36:24.000Z","updated_at":"2024-04-22T16:51:12.000Z","dependencies_parsed_at":"2023-08-17T03:01:26.798Z","dependency_job_id":null,"html_url":"https://github.com/socheatsok78/vuetify-kbar","commit_stats":null,"previous_names":[],"tags_count":15,"template":false,"template_full_name":null,"purl":"pkg:github/socheatsok78/vuetify-kbar","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/socheatsok78%2Fvuetify-kbar","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/socheatsok78%2Fvuetify-kbar/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/socheatsok78%2Fvuetify-kbar/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/socheatsok78%2Fvuetify-kbar/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/socheatsok78","download_url":"https://codeload.github.com/socheatsok78/vuetify-kbar/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/socheatsok78%2Fvuetify-kbar/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30209086,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-07T05:23:27.321Z","status":"ssl_error","status_checked_at":"2026-03-07T05:00:17.256Z","response_time":53,"last_error":"SSL_read: 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":["cmdk","kbar","vuetify"],"created_at":"2024-11-16T00:40:30.022Z","updated_at":"2026-03-07T06:32:35.367Z","avatar_url":"https://github.com/socheatsok78.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Vuetify `kBar`\n\nA simple plug-n-play \u003ckbd\u003ecmd\u003c/kbd\u003e+\u003ckbd\u003ek\u003c/kbd\u003e interface for [Vuetify](http://vuetifyjs.com/).\n\n[Live demo](https://socheat.dev/vuetify-kbar/)\n\n\u003e :warning::warning: This project is currently is in work-in-progress stage.\n\n![Screen Shot 2021-10-31 at 8 27 36 PM](https://user-images.githubusercontent.com/4363857/139585888-5a2c6e9d-a57d-49fb-8421-b730ad1157ef.png)\n\n## Guide\n\n**Install**\n\n\u003e Note: You'll need to bring your own `vuetify`.  \n\u003e You can install `vuetify` via `npm install vuetify` or `yarn add vuetify`.\n\n```sh\n$ npm install @socheatsok78/vuetify-kbar@next\n# or\n$ yarn add @socheatsok78/vuetify-kbar@next\n```\n\n**Usage**\n\n```vue\n\u003ctemplate\u003e\n  \u003cv-app id=\"app\"\u003e\n    \u003cv-kbar :actions=\"actions\" /\u003e\n  \u003c/v-app\u003e\n\u003c/template\u003e\n\n\u003cscript\u003e\nimport { mdiClipboard } from '@mdi/js'\n\nconst actions = [\n  {\n    id: 'blog',\n    name: 'Blog',\n    description: '',\n    shortcut: ['b'],\n    keywords: 'writing words',\n    perform: () =\u003e (window.location.pathname = 'blog')\n  },\n  {\n    id: 'contact',\n    name: 'Contact',\n    shortcut: ['c'],\n    keywords: 'email',\n    perform: () =\u003e (window.location.pathname = 'contact')\n  }\n]\n\nexport default {\n  name: 'App',\n  components: {\n    VKbar\n  },\n  data: () =\u003e ({\n    actions: actions\n  })\n}\n\u003c/script\u003e\n\n```\n\n## Development\n\nThis project was created using `@vue/cli` service.\n\n### Project setup\n```\nyarn install\n```\n\n### Compiles and hot-reloads for development\n```\nyarn serve\n```\n\n### Compiles and minifies for production\n```\nyarn build\n```\n\n### Run your unit tests\n```\nyarn test:unit\n```\n\n### Lints and fixes files\n```\nyarn lint\n```\n\n### Customize configuration\nSee [Configuration Reference](https://cli.vuejs.org/config/).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsocheatsok78%2Fvuetify-kbar","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsocheatsok78%2Fvuetify-kbar","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsocheatsok78%2Fvuetify-kbar/lists"}