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.
- package/README.md +11 -2
- package/dist/index.mjs +16 -16
- package/package.json +3 -3
- package/template-admin-server/package.json +2 -2
- package/template-vue-admin/Dockerfile +2 -2
- package/template-vue-admin/build/custom-plugin.ts +30 -3
- package/template-vue-admin/package.json +29 -28
- package/template-vue-admin/plugins/init.ts +31 -0
- package/template-vue-admin/src/apis/get.ts +1 -2
- package/template-vue-admin/src/apis/patch.ts +0 -1
- package/template-vue-admin/src/apis/post.ts +1 -2
- package/template-vue-admin/src/auto-components.d.ts +4 -2
- package/template-vue-admin/src/auto-imports.d.ts +21 -1
- package/template-vue-admin/src/main.ts +2 -0
- package/template-vue-admin/src/modules/1-router.ts +4 -22
- package/template-vue-admin/src/modules/3-net.ts +6 -2
- package/template-vue-admin/src/modules/4-auth.ts +16 -18
- package/template-vue-admin/src/modules/5-checkupdate.ts +38 -0
- package/template-vue-admin/src/stores/local/index.ts +9 -1
- package/template-vue-admin/src/typings/index.ts +1 -38
- package/template-vue-admin/src/typings/system.d.ts +46 -0
- package/template-vue-admin/src/views/403.vue +2 -1
- package/template-vue-admin/src/views/[...all_404].vue +3 -2
- package/template-vue-admin/src/views/base/login.vue +2 -1
- package/template-vue-admin/src/views/dashboard/[name].vue +7 -2
- package/template-vue-admin/src/views/index.vue +7 -1
- package/template-vue-admin/src/views/system/api.vue +0 -1
- package/template-vue-admin/src/views/system/menuList.vue +1 -2
- package/template-vue-admin/src/views/system/role.vue +0 -1
- package/template-vue-admin/src/views/system/user.vue +0 -1
- package/template-vue-mobile/.vscode/base.code-snippets +24 -0
- package/template-vue-mobile/.vscode/extensions.json +10 -0
- package/template-vue-mobile/.vscode/settings.json +7 -0
- package/template-vue-mobile/Dockerfile +42 -0
- package/template-vue-mobile/README.md +71 -0
- package/template-vue-mobile/_env +6 -0
- package/template-vue-mobile/_gitignore +30 -0
- package/template-vue-mobile/boot.mjs +16 -0
- package/template-vue-mobile/build/custom-plugin.ts +30 -0
- package/template-vue-mobile/build/index.ts +7 -0
- package/template-vue-mobile/build/plugins.ts +68 -0
- package/template-vue-mobile/config/.devrc +2 -0
- package/template-vue-mobile/config/.onlinerc +1 -0
- package/template-vue-mobile/config/.testrc +1 -0
- package/template-vue-mobile/index.html +25 -0
- package/template-vue-mobile/nitro.config.ts +19 -0
- package/template-vue-mobile/package.json +48 -0
- package/template-vue-mobile/public/vite.svg +1 -0
- package/template-vue-mobile/rome.json +24 -0
- package/template-vue-mobile/routes/[...all].ts +11 -0
- package/template-vue-mobile/routes/get/env.ts +25 -0
- package/template-vue-mobile/src/App.vue +29 -0
- package/template-vue-mobile/src/auto-components.d.ts +24 -0
- package/template-vue-mobile/src/auto-imports.d.ts +289 -0
- package/template-vue-mobile/src/components/Init.vue +36 -0
- package/template-vue-mobile/src/global.d.ts +7 -0
- package/template-vue-mobile/src/hooks/useVerifyCode.ts +46 -0
- package/template-vue-mobile/src/layouts/blank.vue +9 -0
- package/template-vue-mobile/src/layouts/default.vue +27 -0
- package/template-vue-mobile/src/layouts/sub.vue +20 -0
- package/template-vue-mobile/src/main.ts +35 -0
- package/template-vue-mobile/src/modules/1-router.ts +40 -0
- package/template-vue-mobile/src/modules/2-pinia.ts +10 -0
- package/template-vue-mobile/src/modules/3-net.ts +46 -0
- package/template-vue-mobile/src/modules/4-auth.ts +64 -0
- package/template-vue-mobile/src/views/[...all_404].vue +557 -0
- package/template-vue-mobile/src/views/base/login.vue +110 -0
- package/template-vue-mobile/src/views/base/resetPasswd.vue +88 -0
- package/template-vue-mobile/src/views/index.vue +18 -0
- package/template-vue-mobile/src/views/my.vue +15 -0
- package/template-vue-mobile/src/views/sub.vue +18 -0
- package/template-vue-mobile/src/vite-env.d.ts +43 -0
- package/template-vue-mobile/tsconfig.json +21 -0
- package/template-vue-mobile/tsconfig.node.json +9 -0
- package/template-vue-mobile/unocss.config.ts +47 -0
- package/template-vue-mobile/vite.config.ts +32 -0
- package/template-vue-mobile/yarn.lock +4395 -0
- /package/{template-vue-admin → template-vue-mobile}/plugins/env.ts +0 -0
File without changes
|