create-young-proj 0.1.0 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (61) hide show
  1. package/README.md +11 -2
  2. package/dist/index.mjs +2702 -42
  3. package/package.json +3 -3
  4. package/template-admin-server/package.json +2 -2
  5. package/template-vue-admin/build/custom-plugin.ts +30 -0
  6. package/template-vue-admin/build/index.ts +7 -0
  7. package/template-vue-admin/build/plugins.ts +59 -0
  8. package/template-vue-admin/package.json +1 -1
  9. package/template-vue-admin/src/main.ts +4 -4
  10. package/template-vue-admin/src/modules/4-auth.ts +8 -4
  11. package/template-vue-admin/src/shims.d.ts +12 -0
  12. package/template-vue-admin/tsconfig.node.json +1 -1
  13. package/template-vue-admin/vite.config.ts +4 -49
  14. package/template-vue-mobile/.vscode/base.code-snippets +24 -0
  15. package/template-vue-mobile/.vscode/extensions.json +10 -0
  16. package/template-vue-mobile/.vscode/settings.json +7 -0
  17. package/template-vue-mobile/Dockerfile +42 -0
  18. package/template-vue-mobile/README.md +71 -0
  19. package/template-vue-mobile/_env +6 -0
  20. package/template-vue-mobile/_gitignore +30 -0
  21. package/template-vue-mobile/boot.mjs +16 -0
  22. package/template-vue-mobile/build/custom-plugin.ts +30 -0
  23. package/template-vue-mobile/build/index.ts +7 -0
  24. package/template-vue-mobile/build/plugins.ts +68 -0
  25. package/template-vue-mobile/config/.devrc +2 -0
  26. package/template-vue-mobile/config/.onlinerc +1 -0
  27. package/template-vue-mobile/config/.testrc +1 -0
  28. package/template-vue-mobile/index.html +25 -0
  29. package/template-vue-mobile/nitro.config.ts +19 -0
  30. package/template-vue-mobile/package.json +48 -0
  31. package/template-vue-mobile/plugins/env.ts +26 -0
  32. package/template-vue-mobile/public/vite.svg +1 -0
  33. package/template-vue-mobile/rome.json +24 -0
  34. package/template-vue-mobile/routes/[...all].ts +11 -0
  35. package/template-vue-mobile/routes/get/env.ts +25 -0
  36. package/template-vue-mobile/src/App.vue +29 -0
  37. package/template-vue-mobile/src/auto-components.d.ts +24 -0
  38. package/template-vue-mobile/src/auto-imports.d.ts +289 -0
  39. package/template-vue-mobile/src/components/Init.vue +36 -0
  40. package/template-vue-mobile/src/global.d.ts +7 -0
  41. package/template-vue-mobile/src/hooks/useVerifyCode.ts +46 -0
  42. package/template-vue-mobile/src/layouts/blank.vue +9 -0
  43. package/template-vue-mobile/src/layouts/default.vue +27 -0
  44. package/template-vue-mobile/src/layouts/sub.vue +20 -0
  45. package/template-vue-mobile/src/main.ts +35 -0
  46. package/template-vue-mobile/src/modules/1-router.ts +40 -0
  47. package/template-vue-mobile/src/modules/2-pinia.ts +10 -0
  48. package/template-vue-mobile/src/modules/3-net.ts +46 -0
  49. package/template-vue-mobile/src/modules/4-auth.ts +64 -0
  50. package/template-vue-mobile/src/views/[...all_404].vue +557 -0
  51. package/template-vue-mobile/src/views/base/login.vue +110 -0
  52. package/template-vue-mobile/src/views/base/resetPasswd.vue +88 -0
  53. package/template-vue-mobile/src/views/index.vue +18 -0
  54. package/template-vue-mobile/src/views/my.vue +15 -0
  55. package/template-vue-mobile/src/views/sub.vue +18 -0
  56. package/template-vue-mobile/src/vite-env.d.ts +43 -0
  57. package/template-vue-mobile/tsconfig.json +21 -0
  58. package/template-vue-mobile/tsconfig.node.json +9 -0
  59. package/template-vue-mobile/unocss.config.ts +47 -0
  60. package/template-vue-mobile/vite.config.ts +32 -0
  61. package/template-vue-mobile/yarn.lock +4395 -0
package/README.md CHANGED
@@ -5,7 +5,10 @@
5
5
  - [x] template-vue-thin
6
6
  - [x] template-vue-admin
7
7
  - [x] template-admin-server
8
- - [ ] template-vue-mobile
8
+ - [x] template-vue-mobile
9
+ - [ ] template-nuxt3
10
+ - [ ] template-ssr
11
+ - [ ] template-solidjs-ssr
9
12
 
10
13
  ## template-vue-thin
11
14
 
@@ -29,4 +32,10 @@
29
32
 
30
33
  ## template-admin-server
31
34
 
32
- 基于 [midwayjs] 开发的后端服务程序
35
+ 基于 [midwayjs](https://www.midwayjs.org/) 开发的后端服务程序
36
+
37
+ ## template-vue-mobile
38
+
39
+ 在 `template-vue-thin` 的基础上加入 `vant4` 开发的移动端模板
40
+
41
+ 目前测试过的最低兼容为 支付宝/钉钉 内置浏览器(`Chrome69`)