import { createApp } from 'vue'; import App from '/@/App.vue'; import { saasInit } from '/nerv-lib/saas'; import { apiModule, initApiSet } from '/@/api'; import { appConfig } from '/@/config'; import components, { initComponent } from '/@/components/initGlobalComponent'; import './theme/global.less'; const app = createApp(App); // 注册全局组件 initComponent(app, components); // 注册全局api initApiSet(app); saasInit({ app, apiModule, appConfig, }); app.mount('#app');