From 6da20b83b419f2225db69547848bf5437885d4bb Mon Sep 17 00:00:00 2001 From: Limon Monte Date: Sun, 10 Jul 2016 01:27:10 +0200 Subject: [PATCH] Improve markdown to highlight code --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 3512b56..1767cbb 100644 --- a/README.md +++ b/README.md @@ -4,11 +4,11 @@ Vue breadcrumbs builds on the official vue-router package to provide simple brea # Usage -``` +```html ``` -``` +```js Vue.use(VueBreadcrumbs) ``` @@ -18,7 +18,7 @@ or with browserify/bundler: $ npm install vue-breadcrumbs ``` -``` +```js var VueBreadcrumbs = require('vue-breadcrumbs') Vue.use(VueBreadcrumbs) @@ -26,7 +26,7 @@ Vue.use(VueBreadcrumbs) Define the matching breadcrumb text in your vue-router routes as the `breadcrumb:` property of a route or subRoute, e.g.: -``` +```js router.map({ '/': { component: Page,