{"id":13766241,"url":"https://github.com/stasson/vue-mdc-adapter","last_synced_at":"2025-04-12T19:48:23.268Z","repository":{"id":57307734,"uuid":"91770762","full_name":"stasson/vue-mdc-adapter","owner":"stasson","description":"DEPRECATED","archived":false,"fork":false,"pushed_at":"2020-06-02T18:24:59.000Z","size":11166,"stargazers_count":413,"open_issues_count":41,"forks_count":69,"subscribers_count":15,"default_branch":"master","last_synced_at":"2025-04-10T12:23:12.515Z","etag":null,"topics":["deprecated"],"latest_commit_sha":null,"homepage":"https://stasson.github.io/vue-mdc-adapter","language":"Vue","has_issues":false,"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/stasson.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-05-19T05:58:52.000Z","updated_at":"2025-01-22T22:57:15.000Z","dependencies_parsed_at":"2022-09-17T11:10:32.132Z","dependency_job_id":null,"html_url":"https://github.com/stasson/vue-mdc-adapter","commit_stats":null,"previous_names":[],"tags_count":90,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stasson%2Fvue-mdc-adapter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stasson%2Fvue-mdc-adapter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stasson%2Fvue-mdc-adapter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stasson%2Fvue-mdc-adapter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/stasson","download_url":"https://codeload.github.com/stasson/vue-mdc-adapter/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248537137,"owners_count":21120709,"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":["deprecated"],"created_at":"2024-08-03T16:00:52.999Z","updated_at":"2025-04-12T19:48:23.247Z","avatar_url":"https://github.com/stasson.png","language":"Vue","funding_links":[],"categories":["Vue","构架","Frameworks","Material Components Web (MDC Web)"],"sub_categories":["响应","Responsive","MDC Web Framework Integrations"],"readme":"[![No Maintenance Intended](http://unmaintained.tech/badge.svg)](http://unmaintained.tech/)\n\n# DEPRECATED\n\n\u003e **This project is stale. You may be interested in following alternatives:**\n\u003e\n\u003e - [Vuetify](https://vuetifyjs.com/en/)\n\u003e   The reference Material implementation for Vue, Not based on MDC-Web though\n\u003e - [material-components-vue](https://github.com/matsp/material-components-vue)\n\u003e   a very serious Vue implementation of MDC-Web\n\u003e - [pgbross/vue-material-adapter](https://github.com/pgbross/vue-material-adapter)\n\u003e   an updated version based on a fork of this project that may be of interest.\n\n## Material Components for Vue\n\n`vue-mdc-adapter` is an integration of\n[Material Components](https://material.io/components/web/)\nfor [Vue.js](https://vuejs.org) which follows the best practices\nrecommended by Google:\n[Using Foundations and Adapters](https://github.com/material-components/material-components-web/blob/master/docs/integrating-into-frameworks.md#the-advanced-approach-using-foundations-and-adapters)\n\nThis project aims to find the right balance between ease of use and\ncustomization while sticking to the _Vue Spirit_ (approachable, versatile, and performant)\n\n## Quick Links\n\n- [Documentation \u0026 Demo](https://stasson.github.io/vue-mdc-adapter)\n- [CodePen](https://codepen.io/collection/XBpwxq/) \u0026 [CodeSandbox](https://codesandbox.io/s/r5o35xnn3q?module=%2Fsrc%2Fcomponents%2FHello.vue)\n- [Webpack Boilerplate](https://github.com/stasson/vue-mdc-adapter-template)\n- [Changelog](https://github.com/stasson/vue-mdc-adapter/blob/master/CHANGELOG.md)\n- [Contributing](https://github.com/stasson/vue-mdc-adapter/blob/master/CONTRIBUTING.md)\n\n\n## Quick Start\n\n#### Playground\n\nFork the [reference codepen template](https://codepen.io/stasson/pen/XzmMKp)\nor one of the [vue-mdc-adapter codepen collection](https://codepen.io/collection/XBpwxq/)\nor the [CodeSandbox](https://codesandbox.io/s/r5o35xnn3q?module=%2Fsrc%2Fcomponents%2FHello.vue)\n\n#### CDN\n\n```html\n\u003chead\u003e\n  \u003c!-- import reset material icons, fonts and vue-mdc-adapter stylesheets --\u003e\n  \u003clink\n    rel=\"stylesheet\"\n    href=\"https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.min.css\"\n  /\u003e\n  \u003clink\n    rel=\"stylesheet\"\n    href=\"https://fonts.googleapis.com/icon?family=Material+Icons\"\n  /\u003e\n  \u003clink\n    rel=\"stylesheet\"\n    href=\"https://fonts.googleapis.com/css?family=Roboto:300,400,500\"\n    type=\"text/css\"\n  /\u003e\n\n  \u003c!-- import vue and then vue-mdc-adapter --\u003e\n  \u003cscript src=\"https://unpkg.com/vue\"\u003e\u003c/script\u003e\n  \u003cscript src=\"https://unpkg.com/vue-mdc-adapter\"\u003e\u003c/script\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n  \u003c!-- vue mdc markup --\u003e\n  \u003cbody\u003e\u003c/body\u003e\n\u003c/body\u003e\n```\n\n#### Vue CLI\n\n##### Simple\n\n```console\nnpm install -g vue-cli\nvue init stasson/vue-mdc-adapter-simple my-project\n```\n\n##### Webpack\n\n```console\nnpm install -g vue-cli\nvue init stasson/vue-mdc-adapter-webpack my-project\ncd my-project\nnpm install\nnpm run dev\n```\n\n\u003e Check out the [Getting Started](https://stasson.github.io/vue-mdc-adapter/#/docs/getting-started) guide for more.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstasson%2Fvue-mdc-adapter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstasson%2Fvue-mdc-adapter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstasson%2Fvue-mdc-adapter/lists"}