An article by Egwuenu Gift about static site generator tooling in Vue. Vue creator Evan You came up with this awesome tool for writing documentation for Vue. A VuePress site is, in fact, an Single Page Application powered by Vue, Vue Router, and webpack.
VuePress uses markdown. Each markdown file is compiled into HTML with markdown-it and then processed as the template of a Vue component. This allows you to directly use Vue inside your markdown files and is great when you need to embed dynamic content.
Some features:
- Built-in Markdown extension
- Default Theme
- Automatic Service Worker
- Google Analytics Integration
- Multi-language Support
Article also deals with installation, setup and example code. Information how to host for free with Netlify is also included. Great read.
[Read More]