publish 0.9.13-rc-1

publish 0.9.13-rc-1
This commit is contained in:
梁灏 2017-01-04 18:20:05 +08:00
parent 23f1a8f28b
commit ba3a2f1e57
2 changed files with 5 additions and 1 deletions

View file

@ -1,6 +1,6 @@
{
"name": "iview",
"version": "0.9.12",
"version": "0.9.13-rc-1",
"title": "iView",
"description": "A high quality UI components Library with Vue.js",
"homepage": "http://www.iviewui.com",

View file

@ -181,6 +181,7 @@
</form-item>
<form-item>
<i-button type="primary" @click="onSubmit('form')">提交</i-button>
<i-button type="ghost" @click="resetForm('form')">重置</i-button>
</form-item>
</i-form>
</div>
@ -387,6 +388,9 @@
}
});
},
resetForm (formName) {
this.$refs[formName].resetFields();
},
c (s) {
console.log(this.form.date)
},