# vite-project **Repository Path**: liangtingkong/vite-project ## Basic Information - **Project Name**: vite-project - **Description**: 硅谷甄选Vue3+Ts项目 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-09-09 - **Last Updated**: 2024-03-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 项目文件结构 ``` vite-project ├─ .env.development ├─ .env.production ├─ .env.test ├─ .eslintcache ├─ .eslintignore ├─ .eslintrc.cjs ├─ index.html ├─ package.json ├─ pnpm-lock.yaml ├─ project.txt ├─ public │ ├─ logo.png │ └─ vite.svg ├─ README.md ├─ scripts │ └─ preinstall.js ├─ src │ ├─ api //接口 │ │ ├─ acl //acl菜单 │ │ │ ├─ menu │ │ │ │ ├─ index.ts │ │ │ │ └─ type.ts │ │ │ ├─ role │ │ │ │ ├─ index.ts │ │ │ │ └─ type.ts │ │ │ └─ user │ │ │ ├─ index.ts │ │ │ └─ type.ts │ │ ├─ product //产品菜单 │ │ │ ├─ attr //产品属性 │ │ │ │ ├─ index.ts │ │ │ │ └─ type.ts │ │ │ ├─ sku //sku │ │ │ │ ├─ index.ts │ │ │ │ └─ type.ts │ │ │ ├─ spu //spu │ │ │ │ ├─ index.ts │ │ │ │ └─ type.ts │ │ │ └─ tradrmark //品牌 │ │ │ ├─ index.ts │ │ │ └─ type.ts │ │ └─ user //用户 │ │ ├─ index.ts │ │ └─ type.ts │ ├─ App.vue │ ├─ assets │ │ ├─ icons │ │ ├─ images │ │ └─ vue.svg │ ├─ components //组件封装 │ │ ├─ Catagory // 三级分类 │ │ │ └─ index.vue │ │ ├─ index.ts │ │ └─ SvgIcon //svg图标 │ │ └─ index.vue │ ├─ directive │ │ └─ has.ts │ ├─ layout //布局 │ │ ├─ index.vue │ │ ├─ logo │ │ ├─ main │ │ ├─ menu //菜单 │ │ ├─ tabbar │ │ │ ├─ breadcrumb │ │ │ ├─ index.vue │ │ │ └─ setting │ │ └─ tags │ │ ├─ index.vue │ │ └─ scroolPane │ ├─ main.ts │ ├─ permission.ts │ ├─ router //路由 │ │ ├─ index.ts │ │ └─ routes.ts │ ├─ setting.ts │ ├─ store //pinia 仓库 │ │ ├─ index.ts │ │ └─ modules │ │ ├─ catagory.ts │ │ ├─ setting.ts │ │ ├─ types │ │ │ └─ type.ts │ │ └─ user.ts │ ├─ style.css │ ├─ styles │ │ ├─ index.scss │ │ ├─ reset.scss │ │ └─ variable.scss │ ├─ utils │ │ ├─ cloneDeep.ts │ │ ├─ request.ts //axios 封装 │ │ ├─ time.ts │ │ └─ token.ts │ ├─ views //页面 │ │ ├─ 404 │ │ ├─ acl │ │ │ ├─ permission │ │ │ ├─ role │ │ │ └─ user │ │ ├─ home │ │ ├─ login │ │ │ └─ index.vue │ │ ├─ product │ │ │ ├─ attr │ │ │ ├─ sku │ │ │ ├─ spu │ │ │ │ ├─ index.vue │ │ │ │ ├─ skuform.vue │ │ │ │ └─ spuform.vue │ │ │ └─ trademark │ │ └─ screen //可视化大屏 │ │ ├─ components │ │ │ ├─ age │ │ │ ├─ counter │ │ │ ├─ line │ │ │ ├─ map │ │ │ ├─ rank │ │ │ ├─ sex │ │ │ ├─ top │ │ │ ├─ tourist │ │ │ └─ year │ │ ├─ images │ │ └─ index.vue │ └─ vite-env.d.ts ├─ tsconfig.json ├─ tsconfig.node.json ├─ vite.config.ts ├─ 接口文档.md ```