8 lines
145 B
TypeScript
8 lines
145 B
TypeScript
// 国际化
|
|
import i18n from "@/lang/index";
|
|
import type { App } from "vue";
|
|
|
|
export function setupI18n(app: App<Element>) {
|
|
app.use(i18n);
|
|
}
|