main.js 357 B

123456789101112131415161718
  1. import App from './App'
  2. import { createSSRApp } from 'vue'
  3. import setupPinia from './store/init'
  4. import 'uno.css'
  5. //挂载全局
  6. import {setupComponents} from './components/index'
  7. export function createApp() {
  8. const app = createSSRApp(App)
  9. // 挂载状态管理
  10. app.use(setupPinia)
  11. // 组件注册全局
  12. setupComponents(app);
  13. return {app}
  14. }