index.js 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. import $url from '@/sheep/url';
  2. import $router from '@/sheep/router';
  3. import $platform from '@/sheep/platform';
  4. import $helper from '@/sheep/helper';
  5. import zIndex from '@/sheep/config/zIndex.js';
  6. import $store from '@/sheep/store';
  7. import dayjs from 'dayjs';
  8. import relativeTime from 'dayjs/plugin/relativeTime';
  9. import duration from 'dayjs/plugin/duration';
  10. import 'dayjs/locale/zh-cn';
  11. dayjs.locale('zh-cn');
  12. dayjs.extend(relativeTime);
  13. dayjs.extend(duration);
  14. const sheep = {
  15. $store,
  16. $url,
  17. $router,
  18. $platform,
  19. $helper,
  20. $zIndex: zIndex,
  21. };
  22. // 加载Shopro底层依赖
  23. export async function ShoproInit() {
  24. // 应用初始化
  25. await $store('app').init();
  26. // 平台初始化加载(各平台provider提供不同的加载流程)
  27. $platform.load();
  28. if (process.env.NODE_ENV === 'development') {
  29. ShoproDebug();
  30. }
  31. }
  32. // 开发模式
  33. function ShoproDebug() {
  34. // 开发环境引入vconsole调试
  35. // #ifdef H5
  36. // import("vconsole").then(vconsole => {
  37. // new vconsole.default();
  38. // });
  39. // #endif
  40. // TODO 芋艿:可以打印路由
  41. // 同步前端页面到后端
  42. // console.log(ROUTES)
  43. }
  44. export default sheep;