vue,i18n 翻译:$t in alert()

vue, i18n translation: $t in alert()

我正在使用 Vue 2.6.14 和 vue-i18n 8.25 我不知道如何将 i18n 翻译放入 alert()...

 async ChangePassword() {               
       await axios.post('/api/reset-password', 
       this.form).then((response) => {                            
                 alert( {{ $t('Password changed') }} );  
                        })}

这似乎不起作用。

试试 this

 alert( this.$t('Password changed') );