Nessuna descrizione

xiaoxian521 e414d3cce9 fix: fix some problem 4 anni fa
build 6a5f1810f9 chore:更换到主分支 4 anni fa
mock 651ac333ee feat: add echarts 4 anni fa
public 644bb65488 fix: build error 4 anni fa
src e414d3cce9 fix: fix some problem 4 anni fa
.env 6a5f1810f9 chore:更换到主分支 4 anni fa
.env.development 6a5f1810f9 chore:更换到主分支 4 anni fa
.env.production 6a5f1810f9 chore:更换到主分支 4 anni fa
.gitignore 8dfcd23d30 docs:文档更新 4 anni fa
LICENSE 1632e51ddf Create LICENSE 4 anni fa
README.md 8e9d6e09f0 docs: update 4 anni fa
babel.config.js 6a5f1810f9 chore:更换到主分支 4 anni fa
index.html 42dfb536bd feat: add countTo components 4 anni fa
package-lock.json e414d3cce9 fix: fix some problem 4 anni fa
package.json e414d3cce9 fix: fix some problem 4 anni fa
postcss.config.js 6a5f1810f9 chore:更换到主分支 4 anni fa
tsconfig.json 6a5f1810f9 chore:更换到主分支 4 anni fa
vite.config.ts 298ffd4b0f fix: mobile bug 4 anni fa

README.md

Vue3.0后台管理系统

功能已开发完毕(兼容移动端),新需求请提issues

vue版本代码:https://github.com/xiaoxian521/CURD-TS
vue版本在线地址:http://yiming_chang.gitee.io/manages
react版本代码:https://github.com/xiaoxian521/CURD-TS/tree/react-ts
angular版本代码:https://github.com/xiaoxian521/CURD-TS/tree/angular-ts
angular版本在线地址:http://usercxx.gitee.io/ng-gis-map
node接口:https://github.com/xiaoxian521/CURD-TS/tree/backend
doc文档:https://github.com/xiaoxian521/CURD-TS/tree/doc

github地址:https://github.com/xiaoxian521/CURD-TS
gitee地址:https://gitee.com/yiming_chang/CURD-TS

知识库地址

帮助你获取最新的 API

安装依赖

npm install

项目运行

npm run serve

项目打包

npm run build

注意点

请先全局安装 typescript、ts-node、vite 如安装请忽略

npm install -g typescript
npm install -g ts-node
npm install -g create-vite-app

坑位

  1. path模块线上部署会遇到process is undefined问题
    解决办法:在源码中开头加入window.process = {}
    issues:https://github.com/jinder/path/issues/7
  2. 运行项目时控制台报NODE_ENV not found
    解决办法:删除node_modules和package-lock.json文件,重新npm install
  3. 运行项目会感觉菜单切换比较卡,这个原因是使用route造成的,watch(route)是隐式的{ deep: true },最好使用watchEffect
    issues:https://github.com/vuejs/vue-next/issues/2027