Vue의 i18n 번역을 위해 Alert()에서 $t 사용
<p>저는 Vue 2.6.14와 vue-i18n 8.25를 사용하고 있습니다.
i18n 번역을 Alert()에 어떻게 넣는지 모르겠어요...</p>
<pre class="brush:php;toolbar:false;">async ChangePassword() {
axios.post('/api/reset-password',
this.form).then((응답) => {
Alert( {{ $t('비밀번호가 변경되었습니다.') }} );
})}</pre>
<p>이 방법은 작동하지 않는 것 같습니다. </p>