# A simple demo of the vuepress-theme-book

book emoji

This demo showcases a VuePress theme inspired by Gitbook.

I really love their clean and minimalist style, so I decided to do a theme for VuePress.

It is not 100% identical to a Gitbook page, some choices are made to respect VuePress limitations.

It is based on the @vuepress/theme-default and extends it.
So you'll get all the great features it already provides! 🎉

# Installation

You can add vue-theme-book to your current Vuepress project by running:

npm install --save vuepress-theme-book
# or yarn add vuepress-theme-book

And then, in your .vuepress/config.js file simply add:

module.exports = {
  theme: "book",
  ...
}