Skip to content

Commit e949fe5

Browse files
committed
feat(input)[#97] mobile input & chinese, Japanese support
* #97, #100
1 parent 0648b60 commit e949fe5

8 files changed

+81
-85
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ A Vue.js search select component with NO dependencies.
3939

4040
# Demo
4141

42-
<http://moreta.github.io/vue-search-select/>
42+
<https://moreta.github.io/vue-search-select/>
4343

4444
# Usage
4545

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-search-select",
3-
"version": "2.7.0",
3+
"version": "2.7.1",
44
"description": "A Vue.js search select form component",
55
"author": "moreta <[email protected]>",
66
"license": "MIT",

publish/vue-search-select.js

+68-75
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

publish/vue-search-select.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

publish/vue-search-select.min.js

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

publish/vue-search-select.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/components/lib/ModelSelect.vue

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
<input class="search"
88
autocomplete="off"
99
tabindex="0"
10-
v-model="searchText"
10+
:value="searchText"
11+
@input="searchText = $event.target.value"
1112
ref="input"
1213
@focus.prevent="openOptions"
1314
@keyup.esc="closeOptions"

src/components/sample/Model/_StringType.vue

+3-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,9 @@
5757
{ value: '21', text: 'more a' + ' - ' + '6' },
5858
{ value: '22', text: 'more a' + ' - ' + '7' },
5959
{ value: '23', text: 'more a' + ' - ' + '8' },
60-
{ value: '24', text: 'more a' + ' - ' + '9' }
60+
{ value: '24', text: 'more a' + ' - ' + '9' },
61+
{ value: '25', text: 'more あ' + ' - ' + '10' },
62+
{ value: '26', text: 'more い' + ' - ' + '11' }
6163
],
6264
item: ''
6365
}

0 commit comments

Comments
 (0)