{"id":14973754,"url":"https://github.com/timoscheuermann/vuement","last_synced_at":"2026-03-04T00:01:37.798Z","repository":{"id":65519590,"uuid":"368186462","full_name":"TimoScheuermann/Vuement","owner":"TimoScheuermann","description":null,"archived":false,"fork":false,"pushed_at":"2021-08-21T07:25:02.000Z","size":3045,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-25T21:16:46.545Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Vue","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/TimoScheuermann.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":"2021-05-17T12:59:22.000Z","updated_at":"2022-08-15T17:19:46.000Z","dependencies_parsed_at":"2023-01-27T02:10:31.060Z","dependency_job_id":null,"html_url":"https://github.com/TimoScheuermann/Vuement","commit_stats":null,"previous_names":[],"tags_count":28,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TimoScheuermann%2FVuement","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TimoScheuermann%2FVuement/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TimoScheuermann%2FVuement/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TimoScheuermann%2FVuement/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TimoScheuermann","download_url":"https://codeload.github.com/TimoScheuermann/Vuement/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240746950,"owners_count":19850996,"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":[],"created_at":"2024-09-24T13:49:21.682Z","updated_at":"2026-03-04T00:01:37.742Z","avatar_url":"https://github.com/TimoScheuermann.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"![Vuement Logo](https://raw.githubusercontent.com/TimoScheuermann/Vuement/862f6a52e58478665236372ced2759b61e695102/vuement.png \"Vuement Logo\")\n\n\n___\n\n**55+ Components, ready to use, for Vue.js**\n\n## Installation\n\n``` bash\n# npm\nnpm install vuement\n```\n\n``` bash\n# yarn\nyarn add vuement\n```\n## Use\n\n``` typescript\nimport Vue from 'vue';\nimport Vuement from 'vuement';\n\nVue.use(Vuement);\n\n// you can pass options like colors and themes\nVue.use(Vuement, { colors: { primary: \"#08f\" }, theme: \"light\" });\n\n\n// The theme can later also be changed by accessing the $vm object.\nthis.$vm.setTheme(\"dark\");\n```\n\n## The $vm Object\n\nUsing the $vm object you can communicate with components and change their appearance. Available methods are listed below:\n\n``` typescript\nthis.$vm.setTheme(theme: string): void\n```\n\n``` typescript\nthis.$vm.setColor(name: string, hex: string): void\n```\n\n``` typescript\nthis.$vm.addTheme(name: string, theme: VMTheme, replace = false): void\n```\n\n``` typescript\nthis.$vm.sendNotification(notificiation: VMNotificationObject): number\n```\n\n``` typescript\nthis.$vm.closeNotification(id: number): void\n```\n\n``` typescript\nthis.$vm.closeAllNotifications(): void\n```\n\n---\n``` typescript\nexport interface VMTheme {\n  color: string;\n  'color-secondary': string;\n  background: string;\n  paragraph: string;\n  container: string;\n  border: string;\n}\n```\n\n``` typescript\nexport interface VMNotificationObject {\n  vmId?: string | number;\n  title?: string;\n  text?: string;\n  image?: string;\n  href?: string;\n  to?: Location;\n  routeName?: string;\n  callback?: VoidFunction;\n  duration?: 'none' | number;\n  closeable?: boolean;\n  content?: VueConstructor\u003cVue\u003e;\n  props?: Record\u003cstring, any\u003e;\n}\n```\n\n---\n\n\n\n## Available Components\n\n[vmAccordion](https://vuement.com/components/vmAccordion)\n, [vmAction](https://vuement.com/components/vmAction)\n, [vmAvatar](https://vuement.com/components/vmAvatar)\n, [vmButton](https://vuement.com/components/vmButton)\n, [vmCard](https://vuement.com/components/vmCard)\n, [vmCheckbox](https://vuement.com/components/vmCheckbox)\n, [vmChip](https://vuement.com/components/vmChip)\n, [vmDialog](https://vuement.com/components/vmDialog)\n, [vmDivider](https://vuement.com/components/vmDivider)\n, [vmFlow](https://vuement.com/components/vmFlow)\n, [vmGrid](https://vuement.com/components/vmGrid)\n, [vmHero](https://vuement.com/components/vmHero)\n, [vmImage](https://vuement.com/components/vmImage)\n, [vmInput](https://vuement.com/components/vmInput)\n, [vmLink](https://vuement.com/components/vmLink)\n, [vmList](https://vuement.com/components/vmList)\n, [vmMenuButton](https://vuement.com/components/vmMenuButton)\n, [vmNavbar](https://vuement.com/components/vmNavbar)\n, [vmNotification](https://vuement.com/components/vmNotification)\n, [vmOnboarding](https://vuement.com/components/vmOnboarding)\n, [vmProgress](https://vuement.com/components/vmProgress)\n, [vmQuote](https://vuement.com/components/vmQuote)\n, [vmRadio](https://vuement.com/components/vmRadio)\n, [vmRevealer](https://vuement.com/components/vmRevealer)\n, [vmScrollUp](https://vuement.com/components/vmScrollUp)\n, [vmSegment](https://vuement.com/components/vmSegment)\n, [vmSelect](https://vuement.com/components/vmSelect)\n, [vmSheet](https://vuement.com/components/vmSheet)\n, [vmSidebar](https://vuement.com/components/vmSidebar)\n, [vmSlider](https://vuement.com/components/vmSlider)\n, [vmSpacer](https://vuement.com/components/vmSpacer)\n, [vmSpinner](https://vuement.com/components/vmSpinner)\n, [vmSwitch](https://vuement.com/components/vmSwitch)\n, [vmTabbar](https://vuement.com/components/vmTabbar)\n, [vmTable](https://vuement.com/components/vmTable)\n, [vmTextarea](https://vuement.com/components/vmTextarea)\n, [vmTitle](https://vuement.com/components/vmTitle)\n\nSome components also feature child components. Eg. vmTabbar includes vmTabbarItem, vmAvatar includes vmAvatarGroup, ...\n\nFor further information consider checking out the official docs at [Vuement.com](https://vuement.com)\n___\n\n\nThis is still a WiP, further documentation and in-depth looks inside each component is available [here](https://vuement.com/components).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftimoscheuermann%2Fvuement","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftimoscheuermann%2Fvuement","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftimoscheuermann%2Fvuement/lists"}