main.js 441 B

12345678910111213141516
  1. import { createSSRApp } from 'vue'
  2. import App from './App.vue'
  3. import { createPinia } from 'pinia'
  4. import {state,setGlobalVariable} from './common/prototype.js'//全局挂载
  5. // 创建Vue应用实例
  6. export function createApp() {
  7. const app = createSSRApp(App)
  8. app.config.globalProperties.$state = state;
  9. app.config.globalProperties.$setGlobalVariable = setGlobalVariable;
  10. app.use(createPinia())
  11. return {
  12. app
  13. };
  14. }