# vue3-template **Repository Path**: F_tree/vue3-template ## Basic Information - **Project Name**: vue3-template - **Description**: 用vite构建的vue3项目,使用pinia做状态管理,route做路由管理,axios做api管理。 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-04-15 - **Last Updated**: 2025-05-13 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Vue 3 + Vite 一个由vite+vue3搭建的项目模板,router用的是vue-router,状态管理用的是pinia,接口请求用的是axios。 ## 项目结构 ``` ├── public │ └── vite.evg ├── src │ ├── api │ │ └── index.js // 接口请求 │ ├── assets │ │ └── vue.svg // 图标 │ ├── components │ │ └── HelloWorld.vue // 组件 │ ├── main.js │ ├── router │ │ └── index.js // 路由 │ ├── store │ │ └── couter.js // 状态管理 │ ├── style.css │ ├── utils │ │ └── index.js // 工具函数 │ ├── views │ │ └── Home.vue // 页面 │ └── vite-env.d.js ├── .eslintrc.cjs ├── .gitignore ├── index.html ├── package.json ├── README.md ├── tsconfig.json ├── tsconfig.node.json ├── vite.config.js └── yarn.lock ```