diff --git a/.gitignore b/.gitignore
index fff1da3..d75e1f3 100644
--- a/.gitignore
+++ b/.gitignore
@@ -5,5 +5,5 @@ npm-debug.log
test/unit/coverage
.coveralls.yml
.flowconfig
-docs/_book
+docs/gitbook/_book
docs/node_modules
\ No newline at end of file
diff --git a/book.json b/book.json
index 9e08b51..113745f 100644
--- a/book.json
+++ b/book.json
@@ -2,14 +2,17 @@
"title": "vue-select",
"gitbook": ">3.0.0",
"root": "./docs/gitbook",
- "plugins": ["edit-link", "-fontsettings", "github", "codepen"],
+ "plugins": ["edit-link", "-fontsettings", "codepen", "include-csv"],
"pluginsConfig": {
"edit-link": {
- "base": "https://github.com/sagalbot/vue-select/edit/master/docs",
+ "base": "https://github.com/sagalbot/vue-select/edit/gitbook/docs/gitbook",
"label": "Edit This Page"
},
"github": {
"url": "https://github.com/sagalbot/vue-select/"
+ },
+ "codepen": {
+ "theme": 32252
}
},
"links": {
diff --git a/docs/gitbook/Api/Props.md b/docs/gitbook/Api/Props.md
index e67b919..0c5ca26 100644
--- a/docs/gitbook/Api/Props.md
+++ b/docs/gitbook/Api/Props.md
@@ -1,223 +1,6 @@
-```js
-/**
- * Contains the currently selected value. Very similar to a
- * `value` attribute on an .
- * @type {Object||String||null}
- */
-value: {
- default: null
-}
-
-/**
- * An array of strings or objects to be used as dropdown choices.
- * If you are using an array of objects, vue-select will look for
- * a `label` key (ex. [{label: 'This is Foo', value: 'foo'}]). A
- * custom label key can be set with the `label` prop.
- * @type {Array}
- */
-options: {
- type: Array,
- default() {
- return []
- },
-}
-
-/**
- * Sets the max-height property on the dropdown list.
- * @deprecated
- * @type {String}
- */
-maxHeight: {
- type: String,
- default: '400px'
-},
-
-/**
- * Enable/disable filtering the options.
- * @type {Boolean}
- */
-searchable: {
- type: Boolean,
- default: true
-},
-
-/**
- * Equivalent to the `multiple` attribute on a `