Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ElvisKang/vue-material

Building Materialize Components with Vue.js
https://github.com/ElvisKang/vue-material

Last synced: 17 days ago
JSON representation

Building Materialize Components with Vue.js

Awesome Lists containing this project

README

        

# THIS REPO IS DEPRECATED

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

# Introduction

Vue-material intends to build [Materialize(0.97.2+)](http://materializecss.com/) with pure [Vue.js(1.0.0+)](http://vuejs.org/) ,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](http://elviskang.github.io/vue-material/)

# 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](http://materializecss.com/getting-started.html) and [Vue.js(1.0.0+)](http://vuejs.org/)

```bash
npm install vue-material
```

## Usage

```javascript
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']);
```