mirror of
https://gitee.com/niucloud-team/niucloud.git
synced 2025-12-12 01:47:08 +00:00
17 lines
231 B
TypeScript
17 lines
231 B
TypeScript
import i18n, { language } from "./i18n"
|
|
|
|
const t = (message: string) => {
|
|
return i18n.global.t(message)
|
|
}
|
|
|
|
export { language, t }
|
|
|
|
export default {
|
|
install(app: any) {
|
|
//注册i18n
|
|
app.use(i18n);
|
|
}
|
|
};
|
|
|
|
|