main.js 818 B

12345678910111213141516171819202122232425262728
  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. let query = window.location.search
  11. let data = null
  12. if(query.indexOf('?loginType=')!=-1){
  13. data = query.split('?loginType=')
  14. uni.setStorageSync('loginType',data[1])
  15. }
  16. export function createApp() {
  17. const app = createSSRApp(App)
  18. const store = Pinia.createPinia();
  19. store.use(createUnistorage());
  20. app.use(store);
  21. return {
  22. app,
  23. Pinia,
  24. }
  25. }