main.js 652 B

1234567891011121314151617181920212223
  1. import { createSSRApp } from 'vue'
  2. import App from './App.vue'
  3. import * as Pinia from "pinia"
  4. import { createUnistorage } from "./uni_modules/pinia-plugin-unistorage"
  5. console.info(`%c%c v3.5.0 %c 武汉大势恒通科技有限责任公司 `,
  6. 'color: #3eaf7c; font-size: 16px;line-height:30px;',
  7. 'background: #35495e; padding: 4px; border-radius: 3px 0 0 3px; color: #fff',
  8. 'background: #41b883; padding: 4px; border-radius: 0 3px 3px 0; color: #fff',
  9. );
  10. export function createApp() {
  11. const app = createSSRApp(App)
  12. const store = Pinia.createPinia();
  13. store.use(createUnistorage());
  14. app.use(store);
  15. return {
  16. app,
  17. Pinia,
  18. }
  19. }