You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
379 B
18 lines
379 B
import { setupI18n } from "@/locale";
|
|
import { setupStore } from "@/store";
|
|
import { setupPermission } from "./permission";
|
|
import { setupUI } from "./ui";
|
|
|
|
export default {
|
|
install(app) {
|
|
// UI扩展配置
|
|
app.use(setupUI);
|
|
// 状态管理
|
|
app.use(setupStore);
|
|
// 国际化
|
|
app.use(setupI18n);
|
|
// 路由拦截
|
|
app.use(setupPermission);
|
|
},
|
|
};
|