# Vue compatibility Docsify allows [Vue.js](https://vuejs.org) components to be added directly to you Markdown files. These components can greatly simplify working with data and adding reactivity to your content. To get started, load either the production (minified) or development (unminified) version of Vue in your `index.html`: ```html ``` ## Basic rendering Docsify will automatically render basic Vue content that does not require `data`, `methods`, or other instance features. ```markdown ``` The HTML above will render the following: ## Advanced usage Vue components and templates that require `data`, `methods`, computed properties, lifecycle hooks, etc. require manually creating a new `Vue()` instance within a ` ``` The HTML & JavaScript above will render the following:

{{ message }}

{{ counter }}
!> Only the first ` ``` Add vuep markup to a markdown file (e.g. `README.md`): ```markdown ```