9 lines
213 B
JavaScript
Raw Normal View History

2025-03-14 17:52:05 +08:00
import * as components from '#/components';
// 全局注册组件
export const registerGlobalComponents = (app) => {
Object.keys(components).forEach((key) => {
app.component(key, components[key]);
});
};