Skip to content
This repository has been archived by the owner on Nov 30, 2020. It is now read-only.

Latest commit

 

History

History

docs

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
home heroImage actionText actionLink features footer
true
/assets/images/mcv-hero.png
Get Started →
/guide/
title details
Material Design Specs
This library wraps the official Google mdc-web components which implement the Material Design specs.
title details
Easy API
Simple and small as possible component APIs, without reinventing HTML.
title details
Decoupled Components
Any component can be imported and used on it's own.
MIT Licensed | Copyright © 2017-present Mats Pfeiffer

Quick Start

npm install --save material-components-vue

# or with yarn
yarn add material-components-vue
<template>
  <m-button>Hello</m-button>
</template>

<script>
  import Button from 'material-components-vue/dist/button'
</script>

<style>
  @import "material-components-vue/dist/button/button.min.css";
</style>