All files / src/boot i18n.ts

0% Statements 0/9
100% Branches 0/0
100% Functions 0/0
0% Lines 0/7

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21                                         
import messages from "src/i18n";
import VueI18n from "vue-i18n";
import { BootInput } from "../types/boot";
 
let i18n: VueI18n;
 
export default async ({ app, Vue }: BootInput) => {
  Vue.use(VueI18n);
 
  // Set i18n instance on app
  app.i18n = new VueI18n({
    locale: "en-us",
    fallbackLocale: "en-us",
    messages
  });
 
  i18n = app.i18n;
};
 
export { i18n };