@@ -50,34 +50,6 @@ vue3 发布之后,性能增强,速度vue2的倍数,打包体积都在减
5050
5151在线demo演示地址:https://admin-tmpl.rencaiyoujia.com/
5252
53- ## HighLight
54-
55- 项目均已最新技术实现,Vue3配套升级全家桶和涉及的插件组件等
56-
57- 项目采用技术:
58-
59- - vue3 + composition api
60- - typescript3.9
61- - sass (dart sass)
62- - [ echats5] ( https://github.com/apache/echarts )
63-
64- vue next 系列:
65-
66- - [ element-plus] ( https://github.com/element-plus/element-plus )
67- - [ vue-router-next] ( https://github.com/vuejs/vue-router-next )
68- - [ vuex-4.0] ( https://github.com/vuejs/vuex )
69- - [ vue-vue-i18n-next] ( https://github.com/panter/vue-i18next )
70-
71-
72- ## Document
73-
74- - [ 文档地址] ( https://rcyj-fed.github.io/vue3-composition-admin-docs/ )
75- - [ 文档项目git地址] ( https://github.com/rcyj-FED/vue3-composition-admin-docs )
76-
77-
78- ## Setup
79-
80- 项目主要是前端和mock server(node)
8153
8254### 功能
8355
@@ -151,91 +123,76 @@ vue next 系列:
151123
152124```
153125admin-tmpl
154- ├─ .browserslistrc
155- ├─ .editorconfig
156- ├─ .env.dev.build
157- ├─ .env.dev.serve
158- ├─ .env.prod.build
159- ├─ .env.prod.serve
160- ├─ .env.test.build
161- ├─ .env.test.serve
162- ├─ .eslintignore
163- ├─ .eslintrc.js
164- ├─ .github
165- │ └─ workflows
166- │ └─ deploy.yml
167- ├─ .gitignore
168- ├─ .travis.yml
169- ├─ Jenkinsfile
170- ├─ LICENSE
171- ├─ README.md
172- ├─ babel.config.js
173- ├─ dist
174- ├─ docker
175- ├─ jest.config.js
176- ├─ k8smanifests
177- ├─ mock
178- │ ├─ constant.ts
179- │ ├─ controller
180- │ ├─ middleware
181- │ ├─ mock.ts
182- │ ├─ mockdb
183- │ ├─ requestDecorator.ts
184- │ ├─ router.ts
185- │ ├─ tsconfig.json
186- │ ├─ type.d.ts
187- │ └─ utils
188- ├─ package.json
189- ├─ public
190- ├─ src
191- │ ├─ @types
192- │ ├─ App.vue
193- │ ├─ apis
194- │ ├─ assets
195- │ ├─ components
196- │ ├─ config
197- │ │ ├─ customConfig.ts
198- │ │ ├─ default
199- │ │ │ ├─ index.ts
200- │ │ │ ├─ layout.ts
201- │ │ │ ├─ net.config.ts
202- │ │ │ ├─ setting.config.ts
203- │ │ │ ├─ theme.config.ts
204- │ │ │ ├─ vue.custom.config.js
205- │ │ │ └─ whitelist.ts
206- │ │ └─ index.ts
207- │ ├─ constant
208- │ │ ├─ headers.ts
209- │ │ ├─ key.ts
210- │ │ ├─ network.ts
211- │ │ └─ settings.ts
212- │ ├─ directives
213- │ │ ├─ clipboard
214- │ │ │ └─ index.ts
215- │ │ ├─ el-draggable-dialog
216- │ │ │ └─ index.ts
217- │ │ ├─ index.ts
218- │ │ ├─ permission
219- │ │ │ └─ index.ts
220- │ │ └─ waves
221- │ │ ├─ index.ts
222- │ │ └─ waves.css
223- │ ├─ layout
224- │ ├─ locales
225- │ ├─ main.ts
226- │ ├─ model
227- │ ├─ permission.ts
228- │ ├─ plugins
229- │ ├─ router
230- │ ├─ shims-vue.d.ts
231- │ ├─ store
232- │ ├─ styles
233- │ ├─ utils
234- │ └─ views
235- ├─ tsconfig.json
236- ├─ vue.config.js
237- └─ yarn.lock
126+ ├─ .env.dev.build # 开发环境
127+ ├─ .env.dev.serve # 开发本地本地
128+ ├─ .env.prod.build # 生产环境
129+ ├─ .env.prod.serve # 生产环境本地
130+ ├─ .env.test.build # 测试环境
131+ ├─ .env.test.serve # 测试环境本地
132+ ├─ .eslintrc.js # eslint
133+ ├─ README.md
134+ ├─ dist # 打包dist
135+ ├─ mock # mock服务
136+ ├─ public # 静态资源
137+ ├─ src # 源码
138+ │ ├─ @types # ts 声明
139+ │ ├─ apis # 接口请求
140+ │ ├─ assets # webpack打包的资源
141+ │ ├─ components # 公共组件
142+ │ ├─ config # 全部配置
143+ │ ├─ constant # 常量
144+ │ ├─ directives # 全局指令
145+ │ ├─ layout # 全局Layout
146+ │ ├─ locales # 国际化
147+ │ ├─ model # 全部model存放
148+ │ ├─ plugins # 插件
149+ │ ├─ router # 路由
150+ │ ├─ store # 全局store管理
151+ │ ├─ styles # 全局样式
152+ │ ├─ utils # 全局公共方法
153+ │ └─ views # 所有业务页面
154+ ├─ tsconfig.json # ts 编译配置
155+ └─ vue.config.js # vue-cli 配置
156+
157+ ```
158+
159+ ## HighLight
238160
161+ 项目均已最新技术实现,Vue3配套升级全家桶和涉及的插件组件等
162+
163+ 项目采用技术:
164+
165+ - vue3 + composition api
166+ - typescript3.9
167+ - sass (dart sass)
168+ - [ echats5] ( https://github.com/apache/echarts )
169+
170+ vue next 系列:
171+
172+ - [ element-plus] ( https://github.com/element-plus/element-plus )
173+ - [ vue-router-next] ( https://github.com/vuejs/vue-router-next )
174+ - [ vuex-4.0] ( https://github.com/vuejs/vuex )
175+ - [ vue-vue-i18n-next] ( https://github.com/panter/vue-i18next )
176+
177+
178+ ## Document
179+
180+ - [ 文档地址] ( https://rcyj-fed.github.io/vue3-composition-admin-docs/ )
181+ - [ 文档项目git地址] ( https://github.com/rcyj-FED/vue3-composition-admin-docs )
182+
183+
184+ ## Setup
185+
186+ 项目主要是前端和mock server(node)
187+
188+ ``` shell
189+ yarn
190+ ```
191+
192+ or
193+
194+ ``` shell
195+ npm install
239196```
240197
241198### Mock
0 commit comments