create-young-proj 0.1.1 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (78) hide show
  1. package/README.md +11 -2
  2. package/dist/index.mjs +16 -16
  3. package/package.json +3 -3
  4. package/template-admin-server/package.json +2 -2
  5. package/template-vue-admin/Dockerfile +2 -2
  6. package/template-vue-admin/build/custom-plugin.ts +30 -3
  7. package/template-vue-admin/package.json +29 -28
  8. package/template-vue-admin/plugins/init.ts +31 -0
  9. package/template-vue-admin/src/apis/get.ts +1 -2
  10. package/template-vue-admin/src/apis/patch.ts +0 -1
  11. package/template-vue-admin/src/apis/post.ts +1 -2
  12. package/template-vue-admin/src/auto-components.d.ts +4 -2
  13. package/template-vue-admin/src/auto-imports.d.ts +21 -1
  14. package/template-vue-admin/src/main.ts +2 -0
  15. package/template-vue-admin/src/modules/1-router.ts +4 -22
  16. package/template-vue-admin/src/modules/3-net.ts +6 -2
  17. package/template-vue-admin/src/modules/4-auth.ts +16 -18
  18. package/template-vue-admin/src/modules/5-checkupdate.ts +38 -0
  19. package/template-vue-admin/src/stores/local/index.ts +9 -1
  20. package/template-vue-admin/src/typings/index.ts +1 -38
  21. package/template-vue-admin/src/typings/system.d.ts +46 -0
  22. package/template-vue-admin/src/views/403.vue +2 -1
  23. package/template-vue-admin/src/views/[...all_404].vue +3 -2
  24. package/template-vue-admin/src/views/base/login.vue +2 -1
  25. package/template-vue-admin/src/views/dashboard/[name].vue +7 -2
  26. package/template-vue-admin/src/views/index.vue +7 -1
  27. package/template-vue-admin/src/views/system/api.vue +0 -1
  28. package/template-vue-admin/src/views/system/menuList.vue +1 -2
  29. package/template-vue-admin/src/views/system/role.vue +0 -1
  30. package/template-vue-admin/src/views/system/user.vue +0 -1
  31. package/template-vue-mobile/.vscode/base.code-snippets +24 -0
  32. package/template-vue-mobile/.vscode/extensions.json +10 -0
  33. package/template-vue-mobile/.vscode/settings.json +7 -0
  34. package/template-vue-mobile/Dockerfile +42 -0
  35. package/template-vue-mobile/README.md +71 -0
  36. package/template-vue-mobile/_env +6 -0
  37. package/template-vue-mobile/_gitignore +30 -0
  38. package/template-vue-mobile/boot.mjs +16 -0
  39. package/template-vue-mobile/build/custom-plugin.ts +30 -0
  40. package/template-vue-mobile/build/index.ts +7 -0
  41. package/template-vue-mobile/build/plugins.ts +68 -0
  42. package/template-vue-mobile/config/.devrc +2 -0
  43. package/template-vue-mobile/config/.onlinerc +1 -0
  44. package/template-vue-mobile/config/.testrc +1 -0
  45. package/template-vue-mobile/index.html +25 -0
  46. package/template-vue-mobile/nitro.config.ts +19 -0
  47. package/template-vue-mobile/package.json +48 -0
  48. package/template-vue-mobile/public/vite.svg +1 -0
  49. package/template-vue-mobile/rome.json +24 -0
  50. package/template-vue-mobile/routes/[...all].ts +11 -0
  51. package/template-vue-mobile/routes/get/env.ts +25 -0
  52. package/template-vue-mobile/src/App.vue +29 -0
  53. package/template-vue-mobile/src/auto-components.d.ts +24 -0
  54. package/template-vue-mobile/src/auto-imports.d.ts +289 -0
  55. package/template-vue-mobile/src/components/Init.vue +36 -0
  56. package/template-vue-mobile/src/global.d.ts +7 -0
  57. package/template-vue-mobile/src/hooks/useVerifyCode.ts +46 -0
  58. package/template-vue-mobile/src/layouts/blank.vue +9 -0
  59. package/template-vue-mobile/src/layouts/default.vue +27 -0
  60. package/template-vue-mobile/src/layouts/sub.vue +20 -0
  61. package/template-vue-mobile/src/main.ts +35 -0
  62. package/template-vue-mobile/src/modules/1-router.ts +40 -0
  63. package/template-vue-mobile/src/modules/2-pinia.ts +10 -0
  64. package/template-vue-mobile/src/modules/3-net.ts +46 -0
  65. package/template-vue-mobile/src/modules/4-auth.ts +64 -0
  66. package/template-vue-mobile/src/views/[...all_404].vue +557 -0
  67. package/template-vue-mobile/src/views/base/login.vue +110 -0
  68. package/template-vue-mobile/src/views/base/resetPasswd.vue +88 -0
  69. package/template-vue-mobile/src/views/index.vue +18 -0
  70. package/template-vue-mobile/src/views/my.vue +15 -0
  71. package/template-vue-mobile/src/views/sub.vue +18 -0
  72. package/template-vue-mobile/src/vite-env.d.ts +43 -0
  73. package/template-vue-mobile/tsconfig.json +21 -0
  74. package/template-vue-mobile/tsconfig.node.json +9 -0
  75. package/template-vue-mobile/unocss.config.ts +47 -0
  76. package/template-vue-mobile/vite.config.ts +32 -0
  77. package/template-vue-mobile/yarn.lock +4395 -0
  78. /package/{template-vue-admin → template-vue-mobile}/plugins/env.ts +0 -0