UNPKG

laravel-vue-i18n

Version:

allows to connect your `Laravel` Framework localization files with `Vue`.

10 lines (9 loc) 179 B
/** * The Interface that is responsible for a loaded language. */ export interface LanguageInterface { lang: string; messages: { [key: string]: string; }; }