Use i18n internationalization, can be used normally, but there is a warning?

follow the online tutorials:

//main.js
import VueI18n from "vue-i18n";
Vue.use(VueI18n)
const i18n = new VueI18n({
    locale: "English",
    messages:{
        "English": require("./common/English.js"),
    }
})

//English.js
export const m = { 
    music: "Music"
}

//xx.vue
<h3>{{$t("m.music")}}</h3>
The

effect is coming out, but the browser keeps issuing warnings

clipboard.png

what is the reason for this?


there are some contents that can't be found


mainly because you haven't set the default value.

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b328e0-2be07.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b328e0-2be07.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?