From 48472a5e377e23d3d41cd326268298fb6f50eac6 Mon Sep 17 00:00:00 2001 From: Marcos Moura Date: Fri, 14 Oct 2016 19:12:48 -0300 Subject: [PATCH] Finish installation docs --- docs/src/pages/GettingStarted.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/src/pages/GettingStarted.vue b/docs/src/pages/GettingStarted.vue index 236c6c0..ac30b1d 100644 --- a/docs/src/pages/GettingStarted.vue +++ b/docs/src/pages/GettingStarted.vue @@ -20,7 +20,7 @@ var VueMaterial = require('vue-material'); * Others package managers like JSPM and Bower are not supported yet. -

Or download from Github and reference the script and the stylesheet in yout HTML:

+

Or download from Github and reference the script and the stylesheet in your HTML:

<link rel="stylesheet" href="path/to/vue-material.css"> <script src="path/to/vue-material.js"></script> @@ -28,13 +28,13 @@ var VueMaterial = require('vue-material'); -

Enable Vue Material in your application using enableAll method. If you want to enable only some components you can enable them using Vue.use():

+

Enable Vue Material in your application using Vue.use(). You can always enable individual components:

Vue.use(VueMaterial); // OR -Vue.use(VueMaterial.MdCore); //Required to make all components work +Vue.use(VueMaterial.MdCore); //Required to boot vue material Vue.use(VueMaterial.MdButton); Vue.use(VueMaterial.MdIcon); Vue.use(VueMaterial.MdSidenav); @@ -43,7 +43,7 @@ Vue.use(VueMaterial.MdToolbar);
-

Right now, to get Vue Material working properly, you'll need configure and apply a default theme.

+

To get Vue Material working properly, you'll need to configure and apply a default theme.

Vue.material.theme.register('default', { primary: 'cyan',