diff --git a/README.md b/README.md
index 2585356..9db1b8c 100644
--- a/README.md
+++ b/README.md
@@ -14,25 +14,41 @@ Install Vue Material through npm or yarn
npm install --save vue-material
yarn add vue-material
```
+* Others package managers like JSPM and Bower are not supported yet.
-Or download and reference the script and the stylesheet in your HTML:
+Import or require Vue and Vue Material in your code:
+``` javascript
+import Vue from 'vue'
+import VueMaterial from 'vue-material'
+import 'vue-material/dist/vue-material.css'
+
+// OR
+
+var Vue = require(vue')
+var VueMaterial = require(vue-material')
+require('vue-material/dist/vue-material.css')
+```
+
+Alternativelly you can download and reference the script and the stylesheet in your HTML:
``` html
```
+## Usage
+
Enable Vue Material in your application using ```Vue.use()```. You can always enable individual components:
``` javascript
-Vue.use(VueMaterial);
+Vue.use(VueMaterial)
// OR
-Vue.use(VueMaterial.MdCore); //Required to boot vue material
-Vue.use(VueMaterial.MdButton);
-Vue.use(VueMaterial.MdIcon);
-Vue.use(VueMaterial.MdSidenav);
-Vue.use(VueMaterial.MdToolbar);
+Vue.use(VueMaterial.mdCore) //Required to boot vue material
+Vue.use(VueMaterial.mdButton)
+Vue.use(VueMaterial.mdIcon)
+Vue.use(VueMaterial.mdSidenav)
+Vue.use(VueMaterial.mdToolbar)
```
To get Vue Material working properly, you'll need to configure and apply a default theme.
@@ -41,7 +57,7 @@ To get Vue Material working properly, you'll need to configure and apply a defau
Vue.material.theme.register('default', {
primary: 'cyan',
accent: 'pink'
-});
+})
```
Or you can register multiple themes at once.
@@ -56,7 +72,7 @@ Vue.material.theme.registerAll({
primary: 'indigo',
accent: 'pink'
}
-});
+})
```
Apply your theme using v-md-theme directive:
diff --git a/docs/src/pages/GettingStarted.vue b/docs/src/pages/GettingStarted.vue
index ac30b1d..05d1cfe 100644
--- a/docs/src/pages/GettingStarted.vue
+++ b/docs/src/pages/GettingStarted.vue
@@ -8,18 +8,26 @@
npm install vue-material yarn add vue-material
-
- Import or require Vue and Vue Material in your code:
-
-import Vue from 'vue';
-import VueMaterial from 'vue-material';
-
-// OR
-
-var Vue = require('vue');
-var VueMaterial = require('vue-material');
-
* Others package managers like JSPM and Bower are not supported yet.
+
+
+
+import Vue from 'vue'
+import VueMaterial from 'vue-material'
+import 'vue-material/dist/vue-material.css'
+
+
+
+
+
+var Vue = require(vue')
+var VueMaterial = require(vue-material')
+require('vue-material/dist/vue-material.css')
+
+
+
+
Or download from Github and reference the script and the stylesheet in your HTML: