0👍
You can use fetch
to download the JSON files and merge them in the locale:
await fetch('/vee-validate/dist/locale/ja.json').then(res => res.json()).then(data => {
VeeValidate.localize('ja', data);
});
- [Vuejs]-403 Forbidden in Vue.js + CodeIgniter 4
- [Vuejs]-Display pdf document on website (mobile friendly) with vue.js
Source:stackexchange.com