docs: simplify $t to t

This commit is contained in:
chenjiahan
2020-03-21 14:46:02 +08:00
parent 10f32d6619
commit d8fa4b9495
80 changed files with 918 additions and 950 deletions
+17 -17
View File
@@ -1,33 +1,33 @@
<template>
<demo-section>
<demo-block :title="$t('alert1')">
<demo-block :title="t('alert1')">
<van-button type="primary" @click="onClickAlert">
{{ $t('alert1') }}
{{ t('alert1') }}
</van-button>
<van-button type="primary" @click="onClickAlert2">
{{ $t('alert2') }}
{{ t('alert2') }}
</van-button>
</demo-block>
<demo-block :title="$t('confirm')">
<demo-block :title="t('confirm')">
<van-button type="primary" @click="onClickConfirm">
{{ $t('confirm') }}
{{ t('confirm') }}
</van-button>
</demo-block>
<demo-block :title="$t('asyncClose')">
<demo-block :title="t('asyncClose')">
<van-button type="primary" @click="onClickAsyncClose">
{{ $t('asyncClose') }}
{{ t('asyncClose') }}
</van-button>
</demo-block>
<demo-block :title="$t('componentCall')">
<demo-block :title="t('componentCall')">
<van-button type="primary" @click="show = true">
{{ $t('componentCall') }}
{{ t('componentCall') }}
</van-button>
<van-dialog
v-model="show"
:title="$t('title')"
:title="t('title')"
show-cancel-button
:lazy-render="false"
>
@@ -68,21 +68,21 @@ export default {
methods: {
onClickAlert() {
this.$dialog.alert({
title: this.$t('title'),
message: this.$t('content'),
title: this.t('title'),
message: this.t('content'),
});
},
onClickAlert2() {
this.$dialog.alert({
message: this.$t('content'),
message: this.t('content'),
});
},
onClickConfirm() {
this.$dialog.confirm({
title: this.$t('title'),
message: this.$t('content'),
title: this.t('title'),
message: this.t('content'),
});
},
@@ -96,8 +96,8 @@ export default {
}
this.$dialog.confirm({
title: this.$t('title'),
message: this.$t('content'),
title: this.t('title'),
message: this.t('content'),
beforeClose,
});
},