Vue material

Material design for Vue.js

README

Material Design for Vue.js

Build Status Downloads License Chat


Vue Material is Simple, lightweight and built exactly according to the Google Material Design specs

Build well-designed apps that can fit on every screen with support to all modern Web Browsers with dynamic themes, components on demand and all with an ease-to-use API

Demo and Documentation


Documentation & demosExamples

If you are trying to find the documentation for previous versions, please go to old website.

Installation and Usage


Install Vue Material through npm or yarn

  1. ``` bash
  2. npm install vue-material --save
  3. yarn add vue-material
  4. ```

* Others package managers like JSPM and Bower are not supported yet.

Import or require Vue and Vue Material in your code:

  1. ``` javascript
  2. import Vue from 'vue'
  3. import VueMaterial from 'vue-material'
  4. import 'vue-material/dist/vue-material.min.css'

  5. Vue.use(VueMaterial)
  6. ```

Or use individual components:

  1. ``` javascript
  2. import Vue from 'vue'
  3. import { MdButton, MdContent, MdTabs } from 'vue-material/dist/components'
  4. import 'vue-material/dist/vue-material.min.css'

  5. Vue.use(MdButton)
  6. Vue.use(MdContent)
  7. Vue.use(MdTabs)
  8. ```

Alternatively you can download and reference the script and the stylesheet in your HTML:

  1. ``` html
  2. <link rel="stylesheet" href="path/to/vue-material.css">
  3. <script src="path/to/vue-material.js"></script>
  4. ```

Optionally import Roboto font & Material Icons from Google CDN:

  1. ``` html
  2. <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Roboto:300,400,500,700,400italic|Material+Icons">
  3. ```

Changelog


Changelog

Questions


If you have any questions, ideas or you want to discuss with Vue Material community, use Discord to join us.

Contributing


Please make sure to read the Contributing Guide before making a pull request.

Browser Support


Vue Material supports all modern browsers.

May work in other browsers but it's untested.

Become a part of the Vue Material community


This project exists thanks to all the people who contribute


Sponsors & Backers


Thank you to all our backers! 🙏 [Become a backer]


Credits and Thanks


Vue Material does not run under the umbrella of any company or anything like that. It is an independent project created by Marcos Moura in his spare time, which has become one of the most used UI Libraries for Vue.js. The development is active and we are working hard to release great things for you.

* elviskang for donating the npm package name!* Bruno Castro for the awesome Vue Material Logo.* Supported by Creative Tim

License


MIT