[Improvement] eslint: use vue-libs (#1237)

This commit is contained in:
neverland
2018-06-07 11:59:02 +08:00
committed by GitHub
parent 5b7542b8f0
commit a1c5c6fef4
27 changed files with 222 additions and 344 deletions

View File

@@ -57,20 +57,20 @@ export default {
methods: {
onClickAlert() {
Dialog.alert({
this.$dialog.alert({
title: this.$t('title'),
message: this.$t('content')
});
},
onClickAlert2() {
Dialog.alert({
this.$dialog.alert({
message: this.$t('content')
});
},
onClickConfirm() {
Dialog.confirm({
this.$dialog.confirm({
title: this.$t('title'),
message: this.$t('content')
});