Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/ElvisKang/vue-material
- Owner: ElvisKang
- License: mit
- Created: 2015-10-17T18:10:04.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-10-20T09:07:39.000Z (about 7 years ago)
- Last Synced: 2024-08-01T02:33:15.196Z (3 months ago)
- Language: Vue
- Homepage: http://elviskang.github.io/vue-material
- Size: 2.45 MB
- Stars: 114
- Watchers: 10
- Forks: 10
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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']);
```