无
![前端6年](http://img-cdn-tc.dcloud.net.cn/uploads/avatar/000/39/99/72_avatar_mid.jpg?v=0)
- 发布:2023-08-18 17:38
- 更新:2023-08-21 11:10
- 阅读:213
产品分类: HbuilderX
PC开发环境操作系统: Windows
PC开发环境操作系统版本号: win11
HBuilderX版本号: 3.8.12
操作步骤:
预期结果:
无
无
实际结果:
无
无
bug描述:
不知什么时候,代码助手提示开始变得很卡很慢,等待了很多版本更新没有解决。
经过我很粗略的测试,官方HBuilderX编辑器生成的所有项目和不是官方生成vue2项目不存在问题,不是官方生成的vue3项目会有问题。可能我测得不太准,因为我接手过2个vue3的项目都卡。是不是有什么冲突?!
![DCloud_HB_WDL](http://img-cdn-tc.dcloud.net.cn/uploads/avatar/000/88/35/65_avatar_mid.jpg?v=0)
那两个Vue3项目,是vue3-cli项目?项目多大?
是项目下所有的文件代码提示都卡?还是某个文件很卡很慢?
如果方便提供下以下信息:
- 项目目录结构(截图截图)
- 项目依赖(package.json)
-
前端6年 (作者)
安装依赖完总共435M
{
"name": "FB-ERP888",
"version": "1.0.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"test": "vue-cli-service serve --mode test",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
},
"dependencies": {
"@element-plus/icons-vue": "^2.0.10",
"@tinymce/tinymce-vue": "5.0.0",
"axios": "1.3.4",
"codemirror": "5.65.5",
"core-js": "3.29.0",
"cropperjs": "1.5.13",
"crypto-js": "4.1.1",
"driver.js": "^0.9.8",
"echarts": "5.4.1",
"element-plus": "^2.3.7",
"jsbarcode": "^3.11.5",
"nprogress": "0.2.0",
"qrcodejs2": "0.0.2",
"sortablejs": "1.15.0",
"speak-tts": "^2.0.8",
"tinymce": "6.3.2",
"vue": "3.2.47",
"vue-i18n": "9.2.2",
"vue-router": "4.1.6",
"vuedraggable": "4.0.3",
"vuex": "4.1.0",
"xgplayer": "2.32.2",
"xgplayer-hls": "2.5.2"
},
"devDependencies": {
"@babel/core": "7.21.00",
"@babel/eslint-parser": "7.19.1",
"@vue/cli-plugin-babel": "5.0.8",
"@vue/cli-plugin-eslint": "5.0.8",
"@vue/cli-service": "5.0.8",
"copy-webpack-plugin": "^9.1.0",
"eslint": "8.35.0",
"eslint-plugin-vue": "9.9.0",
"sass": "1.58.3",
"sass-loader": "10.1.1"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"globals": {
"APP_CONFIG": true
},
"extends": [
"plugin:vue/vue3-essential",
"eslint:recommended"
],
"parserOptions": {
"parser": "@babel/eslint-parser"
},
"rules": {
"indent": 0,
"no-tabs": 0,
"no-mixed-spaces-and-tabs": 0,
"vue/no-unused-components": 0,
"vue/multi-word-component-names": 0,
"no-unused-vars": "off",
"no-useless-escape": "off"
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead",
"not ie 11"
]
}2023-08-21 16:02