diff --git a/readme.md b/readme.md index 726be70..9ba486d 100644 --- a/readme.md +++ b/readme.md @@ -112,5 +112,17 @@ new Vue({ ` }).$mount('#app'); ``` +## Options +> An options object can also be passed into the plugin to specify your own template and rendering methods if desired. For example: +```js +import Vue from 'vue'; +import VueBreadcrumbs from 'vue-2-breadcrumbs'; + +Vue.use(VueBreadcrumbs, { + template: '' +}); +```