Skip to content

Commit 008253d

Browse files
authored
Merge branch 'master' into master
2 parents 7c76102 + 6fdc460 commit 008253d

File tree

6 files changed

+7
-5
lines changed

6 files changed

+7
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ You may now use the component in your markup
5151
Just include `vue` & `vue-select.js` - I recommend using [unpkg](https://unpkg.com/#/).
5252

5353
```html
54-
<script scr="https://unpkg.com/vue@latest"></script>
54+
<script src="https://unpkg.com/vue@latest"></script>
5555
<!-- use the latest release -->
5656
<script src="https://unpkg.com/vue-select@latest"></script>
5757
<!-- or point to a specific release -->

docs/components/Examples.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
<div class="radio">
4747
<label>
4848
<input type="radio" name="reactive-options" v-model="reactive" :value="['foo','bar','baz']">
49-
<v-code lang="markup">&#x3C;v-select options=&#x22;['foo','bar','baz']&#x22;&#x3E;&#x3C;/v-select&#x3E;</v-code>
49+
<v-code lang="markup">&#x3C;v-select :options=&#x22;['foo','bar','baz']&#x22;&#x3E;&#x3C;/v-select&#x3E;</v-code>
5050
</label>
5151
</div>
5252
</div>

docs/components/snippets/InstallSnippet.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template>
22
<div>
33
<p>Install from GitHub via NPM</p>
4-
<pre><v-code lang="bash">npm install sagalbot/vue-select</v-code></pre>
4+
<pre><v-code lang="bash">npm install vue-select</v-code></pre>
55

66
<p>To use the vue-select component in your templates, simply import it, and register it with your component.</p>
77
<pre><v-code lang="markup">&#x3C;template&#x3E;

docs/md/ReactiveOptions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ When the list of options provided by the parent changes, vue-select will react a
1212
<div class="radio">
1313
<label>
1414
<input type="radio" name="reactive-options" v-model="reactive" :value="['foo','bar','baz']">
15-
`<v-select options="['foo','bar','baz']"></v-select>`
15+
`<v-select :options="['foo','bar','baz']"></v-select>`
1616
</label>
1717
</div>
1818

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"main": "dist/vue-select.js",
88
"license": "MIT",
99
"scripts": {
10+
"start": "npm run dev",
1011
"dev": "node build/dev-server.js",
1112
"dev:docs": "node build/dev-server.js --docs",
1213
"build": "node build/build.js",

src/components/Select.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@
273273
<slot name="selected-option" v-bind="option">
274274
{{ getOptionLabel(option) }}
275275
</slot>
276-
<button v-if="multiple" @click="deselect(option)" type="button" class="close">
276+
<button v-if="multiple" @click="deselect(option)" type="button" class="close" aria-label="Remove option">
277277
<span aria-hidden="true">&times;</span>
278278
</button>
279279
</span>
@@ -294,6 +294,7 @@
294294
:readonly="!searchable"
295295
:style="{ width: isValueEmpty ? '100%' : 'auto' }"
296296
:id="inputId"
297+
aria-label="Search for option"
297298
>
298299

299300
<i v-if="!noDrop" ref="openIndicator" role="presentation" class="open-indicator"></i>

0 commit comments

Comments
 (0)