Skip to content

Commit

Permalink
Update Vuepress docs
Browse files Browse the repository at this point in the history
  • Loading branch information
drikusroor committed Sep 24, 2022
1 parent fdb59a3 commit 75e70ec
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion docs/.vuepress/components/HomePageDemo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div>
<div class="pl-1 pb-2 pt-3">Selected Country: {{query}}</div>
<vue-bootstrap-autocomplete
:data="['Canada', 'United Kingdom', 'United States', 'Mexico']"
:data="['Canada', 'United Kingdom', 'United States', 'Mexico', 'Netherlands']"
v-model="query"
showOnFocus
placeholder="Choose a country"
Expand Down
4 changes: 2 additions & 2 deletions docs/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
home: true
heroText: Vue Typeahead Bootstrap
tagline: A simple typeahead for Vue 2 using Bootstrap 4
heroText: Vue Bootstrap Autocomplete
tagline: A simple autocomplete component for Vue 2 using Bootstrap 4
actionText: Get Started
features:
- title: bootstrap-vue compatible
Expand Down
6 changes: 3 additions & 3 deletions docs/examples/examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
<template>
<div class="pl-1 pb-2 pt-3">Selected Country: {{query}}</div>
<div>
Options: `Canada, United States, Mexico`,
Options: `Canada, United States, Mexico, Netherlands`,
<vue-bootstrap-autocomplete
:data="['Canada', 'United States', 'Mexico']"
:data="['Canada', 'United States', 'Mexico', 'Netherlands']"
v-model="query"
placeholder="Choose a country"
/>
Expand All @@ -18,7 +18,7 @@
<script>
export default {
data(){
data() {
return {
query: ''
}
Expand Down
8 changes: 4 additions & 4 deletions docs/guide/gettingStarted.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

## Installation
```js
// npm
npm i vue-bootstrap-autocomplete

// yarn
yarn add vue-bootstrap-autocomplete

// npm
npm install vue-bootstrap-autocomplete --save
```

## Registration
Expand Down Expand Up @@ -36,7 +36,7 @@ The only required props are a `v-model` and a `data` array.
```html
<vue-bootstrap-autocomplete
v-model="query"
:data="['Canada', 'United States', 'Mexico']"
:data="['Canada', 'United States', 'Mexico', 'Netherlands']"
/>
```

Expand Down

0 comments on commit 75e70ec

Please sign in to comment.