chore(deps): update deps

ISSUES CLOSED: \
This commit is contained in:
Soybean 2022-05-19 23:48:06 +08:00
parent 095c432363
commit a70e4161be
4 changed files with 561 additions and 599 deletions

View File

@ -7,7 +7,7 @@ module.exports = {
{ value: 'refactor', name: 'refactor: 代码重构(不包括 bug 修复、功能新增)' },
{ value: 'perf', name: 'perf: 性能优化' },
{ value: 'test', name: 'test: 添加、修改测试用例' },
{ value: 'build', name: 'build: 构建流程、外部依赖变更(如升级 npm 包、修改 脚手架 配置等)' },
{ value: 'chore', name: 'chore: 构建流程、外部依赖变更(如升级 npm 包、修改 脚手架 配置等)' },
{ value: 'ci', name: 'ci: 修改 CI 配置、脚本' },
{ value: 'chore', name: 'chore: 对构建过程或辅助工具和库的更改(不影响源文件、测试用例)' },
{ value: 'revert', name: 'revert: 回滚 commit' }

View File

@ -45,7 +45,7 @@
"swiper": "^8.1.5",
"ua-parser-js": "^1.0.2",
"vditor": "^3.8.14",
"vue": "3.2.33",
"vue": "3.2.34",
"vue-router": "^4.0.15",
"wangeditor": "^4.7.15",
"xgplayer": "^2.31.6"
@ -54,15 +54,15 @@
"@amap/amap-jsapi-types": "^0.0.8",
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@iconify/json": "^2.1.45",
"@iconify/json": "^2.1.46",
"@iconify/vue": "^3.2.1",
"@types/bmapgl": "^0.0.5",
"@types/crypto-js": "^4.1.1",
"@types/node": "^17.0.34",
"@types/node": "^17.0.35",
"@types/qs": "^6.9.7",
"@types/ua-parser-js": "^0.7.36",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"@vitejs/plugin-vue": "^2.3.3",
"@vitejs/plugin-vue-jsx": "^1.3.10",
"@vue/eslint-config-prettier": "^7.0.0",

File diff suppressed because it is too large Load Diff

View File

@ -63,7 +63,7 @@ export default function useEcharts(
renderFun?: (chartInstance: echarts.ECharts) => void
) {
let chart: echarts.ECharts | null = null;
const domRef = ref<HTMLElement>();
const domRef = ref<HTMLElement | null>(null);
const initialSize = { width: 0, height: 0 };
const { width, height } = useElementSize(domRef, initialSize);