我正在使用Vue 2.6.14和vue-i18n 8.25 我无法弄清楚如何在alert()中放置i18n翻译...
async ChangePassword() {
await axios.post('/api/reset-password',
this.form).then((response) => {
alert( {{ $t('密码已更改') }} );
})}
这似乎不起作用。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
尝试使用
thisalert( this.$t('密码已更改') );