Vue I18n message format compile options.
compilationobject{ jit: true, strictMessage: true, escapeHtml: false }Configure flags that sets the behavior compilation of locale messages.
Supported properties:
jitbooleantrueWhether to use the JIT compilation of Vue I18n message compiler.
strictMessagebooleantrueStrictly check that the locale message does not contain HTML tags. If HTML tags are included, an error is thrown.
escapeHtml option to true.escapeHtmlbooleanfalseDetermine whether to escape HTML tags if they are included in the locale message.
strictMessage is disabled by setting it to false, we recommend enabling this option.