Skip to content

Latest commit

 

History

History
48 lines (29 loc) · 1.4 KB

README.md

File metadata and controls

48 lines (29 loc) · 1.4 KB

THIS REPO IS DEPRECATED

Please Move To https://github.com/vuematerial/vue-material

Introduction

Vue-material intends to build Materialize(0.97.2+) with pure Vue.js(1.0.0+) ,which let users get rid of depending on 3rd Javascript libraries ,such as Materialize.js and Jquery.js(with plugins).In addition,I hope that you will construct a material design website easier with vue-material.

Status

Still Under Building

Supported Browsers:

Chrome 35+, Firefox 31+, Safari 7+, IE 10+

Documentation

Link

Declaration & Acknowledgement

This project doesn't belong to Materialize. I'd like to thank Alan Chang for permitting me to use their Logo for this project. :)

Getting Started

Download

Download Materializecss and Vue.js(1.0.0+)

npm install vue-material

Usage

import Vue from 'vue';
import Material from 'vue-material';
//Globally register all of the components;
Material.regAll(Vue);
//or
//Globally register the components that you need
Material.reg(Vue,['buttons','cards']);