Looking for efficient methods for internationalization in Vue?
One approach I am considering is to utilize a 'strings' object that holds all the strings, then use ajax requests to update this object based on translations stored in json files for different languages.
Seeking suggestions for better solutions. Currently facing challenges with my strings method as it needs to be loaded before anything else.
Does Vue offer a placeholder feature for strings? For instance, if I have a menu with entries stored in my vm's data, is there a way to initially set them to a static string and later bind them automatically to another string once it becomes available?