From 11514f4e7cea29a1d421f6bcfc2c9e35388db608 Mon Sep 17 00:00:00 2001 From: sundongyu <2811054731@qq.com> Date: Sun, 31 Mar 2024 13:33:24 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=89=20init:=E6=9B=B4=E6=96=B0=E4=BA=86?= =?UTF-8?q?markdown=E6=96=87=E6=A1=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/README.md b/README.md index 1d06141..9732fbf 100644 --- a/README.md +++ b/README.md @@ -31,3 +31,30 @@ npm run dev ```sh npm run build ``` +```bash +├─node_modules -- 项目依赖文件夹 +├─public -- 放置静态资源文件 +├─src -- 根目录文件夹放置项目文件 +| ├─assests -- 静态资源文件夹 +| ├─components -- 公共组件文件夹 +| ├─pages -- 页面文件夹 +| | ├─header -- 头部文件夹 +| | ├─content -- 内容文件夹 +| | ├─footer -- 页脚文件夹 +| ├─plugins -- 插件文件夹 +| ├─router -- 路由文件夹 +| ├─stores -- pinia文件夹 +| ├─style -- 公共样式文件夹 +| ├─App.vue -- 根组件 +| ├─main.ts -- 入口文件 +├─.gitignore -- git忽略文件 +├─env.d.ts -- TypeScript 编译器可以识别 TypeScript 类型声明文件 +├─index.html -- 项目入口文件 +├─package-lock.json -- 依赖包的锁定文件 +├─package.json -- 项目依赖包 +├─README.md -- 项目说明 +├─tsconfig.app.json -- 对 TypeScript 配置文件进行扩展,并覆盖 +├─tsconfig.json -- Typescript配置文件 +├─tsconfig.node.json -- 对 TypeScript 配置文件进行扩展,并覆盖 +├─vite.config.ts -- Vite配置文件 +```