release 1.0.2
This commit is contained in:
parent
ed65a3df43
commit
6281859fe5
3 changed files with 7 additions and 3 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -7,6 +7,7 @@
|
||||||
*.bak
|
*.bak
|
||||||
.DS_Store
|
.DS_Store
|
||||||
node_modules/
|
node_modules/
|
||||||
|
node_modules2/
|
||||||
.project
|
.project
|
||||||
.settings
|
.settings
|
||||||
npm-debug.log
|
npm-debug.log
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "iview",
|
"name": "iview",
|
||||||
"version": "1.0.1",
|
"version": "1.0.2",
|
||||||
"title": "iView",
|
"title": "iView",
|
||||||
"description": "A high quality UI components Library with Vue.js",
|
"description": "A high quality UI components Library with Vue.js",
|
||||||
"homepage": "http://www.iviewui.com",
|
"homepage": "http://www.iviewui.com",
|
||||||
|
|
|
@ -352,8 +352,11 @@
|
||||||
this.showClose = false;
|
this.showClose = false;
|
||||||
},
|
},
|
||||||
handleIconClick () {
|
handleIconClick () {
|
||||||
if (!this.showClose) return;
|
if (this.showClose) {
|
||||||
this.handleClear();
|
this.handleClear();
|
||||||
|
} else {
|
||||||
|
this.handleFocus();
|
||||||
|
}
|
||||||
},
|
},
|
||||||
handleClear () {
|
handleClear () {
|
||||||
this.visible = false;
|
this.visible = false;
|
||||||
|
|
Loading…
Add table
Reference in a new issue