{"id":15294996,"url":"https://github.com/arturmiz/vuent","last_synced_at":"2025-04-06T00:09:16.586Z","repository":{"id":44842938,"uuid":"118683115","full_name":"arturmiz/vuent","owner":"arturmiz","description":"🎨 Vue.js components implementing Microsoft Fluent Design","archived":false,"fork":false,"pushed_at":"2023-07-06T14:22:09.000Z","size":2824,"stargazers_count":276,"open_issues_count":43,"forks_count":23,"subscribers_count":8,"default_branch":"master","last_synced_at":"2024-05-01T05:22:49.791Z","etag":null,"topics":["component-library","fluent","fluent-design","frontend","frontend-library","library","microsoft-fluent","uikit","uwp","uwp-dev","vue","vue-components","vue-plugin","vuejs2","vuent"],"latest_commit_sha":null,"homepage":"https://vuentjs.org","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/arturmiz.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":".github/CONTRIBUTING.md","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}},"created_at":"2018-01-23T23:17:28.000Z","updated_at":"2024-02-06T16:21:21.000Z","dependencies_parsed_at":"2024-01-08T08:55:11.477Z","dependency_job_id":null,"html_url":"https://github.com/arturmiz/vuent","commit_stats":{"total_commits":179,"total_committers":2,"mean_commits":89.5,"dds":0.08379888268156421,"last_synced_commit":"ee40eda5d977991fd01b279af38c8251de1746a0"},"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arturmiz%2Fvuent","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arturmiz%2Fvuent/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arturmiz%2Fvuent/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arturmiz%2Fvuent/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/arturmiz","download_url":"https://codeload.github.com/arturmiz/vuent/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247415967,"owners_count":20935387,"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":["component-library","fluent","fluent-design","frontend","frontend-library","library","microsoft-fluent","uikit","uwp","uwp-dev","vue","vue-components","vue-plugin","vuejs2","vuent"],"created_at":"2024-09-30T17:08:15.178Z","updated_at":"2025-04-06T00:09:16.566Z","avatar_url":"https://github.com/arturmiz.png","language":"JavaScript","funding_links":[],"categories":["Components \u0026 Libraries","Frameworks [🔝](#readme)","Frameworks"],"sub_categories":["Frameworks","Component Collections"],"readme":"# Vuent\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://vuentjs.org/logo.svg\" alt=\"Vuent\" width=\"280\" /\u003e\n\u003c/p\u003e\n\n![master](https://github.com/arturmiz/vuent/workflows/build/badge.svg)\n[![Build Status](https://dev.azure.com/vuent/vuent/_apis/build/status/arturmiz.vuent)](https://dev.azure.com/vuent/vuent/_build/latest?definitionId=1)\n[![codecov](https://codecov.io/gh/arturmiz/vuent/branch/master/graph/badge.svg)](https://codecov.io/gh/arturmiz/vuent)\n[![License](https://img.shields.io/npm/l/vuent.svg)](https://www.npmjs.com/package/vuent)\n[![Version](https://img.shields.io/npm/v/vuent.svg)](https://www.npmjs.com/package/vuent)\n[![Downloads in total](https://img.shields.io/npm/dt/vuent.svg)](https://www.npmjs.com/package/vuent)\n\nVuent is a set of reusable UI components for [Vue][vue] created according to Microsoft [Fluent Design][fluent], in particular [its official variation][fluent-uwp] about building [Universal Windows Platform (UWP)][uwp] applications.\n\nThe project aims to help developers build web or [UWP][uwp] apps with Fluent's look'n'feel leveraging [Vue][vue] as a framework for UI/view layer.\n\n## How to use\n\n### Quickstart\n\nThe following snippets can get you up and running with simple demo containing basic text field:\n\n```html\n\u003c!DOCTYPE html\u003e\n\u003chtml lang=\"en\"\u003e\n\u003chead\u003e\n  \u003cmeta charset=\"utf-8\" /\u003e\n\n  \u003ctitle\u003eVuent Demo\u003c/title\u003e\n\n  \u003clink href=\"https://unpkg.com/vuent/dist/vuent.css\" type=\"text/css\" rel=\"stylesheet\" media=\"screen\" /\u003e\n\n  \u003cscript src=\"https://unpkg.com/vue@2.5.13/dist/vue.js\" defer\u003e\u003c/script\u003e\n  \u003cscript src=\"https://unpkg.com/vuent/dist/vuent.umd.js\" defer\u003e\u003c/script\u003e\n  \u003cscript src=\"main.js\" defer\u003e\u003c/script\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n  \u003cdiv id=\"app\"\u003e\n    \u003cp\u003e{{ message }}\u003c/p\u003e\n\n    \u003cvnt-input v-model=\"message\" label=\"Text field\"\u003e\u003c/vnt-input\u003e\n  \u003c/div\u003e\n\u003c/body\u003e\n\u003c/html\u003e\n```\n\n```javascript\n// main.js\nvar app = new Vue({\n  el: '#app',\n  data: {\n    message: 'Hello Vuent!'\n  }\n});\n```\n\nFor more details visit the Vuent's website - [https://vuentjs.org][vuent-website].\n\n### npm / Yarn\n\nGo to your project's directory and run in terminal:\n\n```bash\nnpm install vuent --save # OR yarn add vuent\n```\n\nOnce Vuent is installed in your project, somewhere in your JavaScript code use it as follows:\n\n```js\nimport Vue from 'vue';\nimport Vuent from 'vuent';\n\nVue.use(Vuent);\n```\n\n### Vue CLI 3\n\nIf you're using Vue CLI 3 in your project, simply run in terminal:\n\n```\nvue add vuent\n```\n\nThen in your project's main file tell Vue to use Vuent:\n\n```js\nVue.use(Vuent);\n```\n\n## Documentation\n\nDocumentation and playground with live examples are available on the Vuent's website - [https://vuentjs.org][vuent-website].\n\n## Changelog\n\nChanges for released versions are documented in [CHANGELOG][changelog-file] file.\n\n## Contributing\n\nAny contribution is more than welcome! More details can be found in [CONTRIBUTING][contributing-file] file.\n\n## License\n\nVuent is [MIT licensed](https://github.com/arturmiz/vuent/blob/master/LICENSE).\n\n[vue]: https://vuejs.org\n[fluent]: https://fluent.microsoft.com/\n[fluent-uwp]: https://developer.microsoft.com/en-us/windows/apps/design\n[uwp]: https://developer.microsoft.com/en-us/windows/apps\n[contributing-file]: https://github.com/arturmiz/vuent/blob/master/.github/CONTRIBUTING.md\n[changelog-file]: https://github.com/arturmiz/vuent/blob/master/CHANGELOG.md]\n[vuent-website]: https://vuentjs.org\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farturmiz%2Fvuent","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Farturmiz%2Fvuent","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farturmiz%2Fvuent/lists"}