diff --git a/docs/index.html b/docs/index.html index 5f9a0e2..f69e5ca 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1 +1 @@ -
\n Type a country:\n
\nbootstrap-vue
compatibleInstallation
\n$ npm install vue-bootstrap-typeahead --save
\n Minified UMD and CommonJS builds are available in the dist
folder. The component is also available on unpkg.
\n<link href=\"https://unpkg.com/vue-bootstrap-typeahead/dist/VueBootstrapTypeahead.css\" rel=\"stylesheet\">\n<script src=\"https://unpkg.com/vue-bootstrap-typeahead\"></script>
\n\n Registration
\n\nimport VueBootstrapTypeahead from 'vue-bootstrap-typeahead'\n\n// Don't forget to include the Bootstrap CSS/SCSS files!\nimport 'bootstrap/scss/bootstrap.scss'\n\n// Global registration\nVue.component('vue-bootstrap-typeahead', VueBootstrapTypeahead)\n\n// OR\n\n// Local registration\nexport default {\n components: {\n VueBootstrapTypeahead\n }\n}
\n Basic Usage
\nThe only required props
are a v-model
and a data
array.
<vue-bootstrap-typeahead\n v-model=\"query\"\n :data=\"['Canada', 'USA', 'Mexico']\"\n/>
\n \n Made by Alex Urquhart\n
\n\n Type a country:\n
\nbootstrap-vue
compatibleInstallation
\n$ npm install vue-bootstrap-typeahead --save
\n Minified UMD and CommonJS builds are available in the dist
folder. The component is also available on unpkg.
\n<link href=\"https://unpkg.com/vue-bootstrap-typeahead/dist/VueBootstrapTypeahead.css\" rel=\"stylesheet\">\n<script src=\"https://unpkg.com/vue-bootstrap-typeahead\"></script>
\n\n Registration
\n\nimport VueBootstrapTypeahead from 'vue-bootstrap-typeahead'\n\n// Don't forget to include the Bootstrap CSS/SCSS files!\nimport 'bootstrap/scss/bootstrap.scss'\n\n// Global registration\nVue.component('vue-bootstrap-typeahead', VueBootstrapTypeahead)\n\n// OR\n\n// Local registration\nexport default {\n components: {\n VueBootstrapTypeahead\n }\n}
\n Basic Usage
\nThe only required props
are a v-model
and a data
array.
<vue-bootstrap-typeahead\n v-model=\"query\"\n :data=\"['Canada', 'USA', 'Mexico']\"\n/>
\n