亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

Using $t in alert() for Vue's i18n translation
P粉757556355
P粉757556355 2023-08-26 16:36:42
0
1
609
<p>I'm using Vue 2.6.14 and vue-i18n 8.25 I can't figure out how to put the i18n translation in alert()...</p> <pre class="brush:php;toolbar:false;">async ChangePassword() { await axios.post('/api/reset-password', this.form).then((response) => { alert( {{ $t('Password has been changed') }} ); })}</pre> <p>This doesn't seem to work. </p>
P粉757556355
P粉757556355

reply all(1)
P粉403804844

Try using this

alert( this.$t('密碼已更改') );
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template