diff --git a/README.md b/README.md index f93bb1d..c30936d 100644 --- a/README.md +++ b/README.md @@ -74,37 +74,6 @@ Vue.use(VueMaterial.mdSidenav) Vue.use(VueMaterial.mdToolbar) ``` -To get Vue Material working properly, you'll need to configure and apply a default theme. - -``` javascript -Vue.material.theme.register('default', { - primary: 'cyan', - accent: 'pink' -}) -``` - -Or you can register multiple themes at once. - -``` javascript -Vue.material.theme.registerAll({ - default: { - primary: 'cyan', - accent: 'pink' - }, - phone: { - primary: 'indigo', - accent: 'pink' - } -}) -``` - -Apply your theme using v-md-theme directive: - -``` html -
-
-``` - ## Browser Support Vue Material supports the latest version of all Browsers. This means: * Google Chrome 50+ @@ -113,6 +82,7 @@ Vue Material supports the latest version of all Browsers. This means: * Opera 40+ * IE 11 * Edge + May work in other browsers but it's untested. ## Changelog diff --git a/docs/src/App.vue b/docs/src/App.vue index 8a1b9d4..daae611 100644 --- a/docs/src/App.vue +++ b/docs/src/App.vue @@ -1,7 +1,7 @@