perf:refine code

This commit is contained in:
Pan
2017-11-29 09:54:18 +08:00
committed by 花裤衩
parent 37085484d1
commit a17c1eb206
2 changed files with 8 additions and 2 deletions

View File

@@ -41,7 +41,7 @@
</el-form-item>
<el-form-item>
<el-button type="primary" @click="onSubmit">Create</el-button>
<el-button>Cancel</el-button>
<el-button @click="onCancel">Cancel</el-button>
</el-form-item>
</el-form>
</div>
@@ -66,6 +66,12 @@ export default {
methods: {
onSubmit() {
this.$message('submit!')
},
onCancel() {
this.$message({
message: 'cancel!',
type: 'warning'
})
}
}
}