echarts版本升级
Showing
2 changed files
with
13 additions
and
2 deletions
... | @@ -12,7 +12,7 @@ | ... | @@ -12,7 +12,7 @@ |
12 | "axios": "^0.21.1", | 12 | "axios": "^0.21.1", |
13 | "clipboard": "^2.0.11", | 13 | "clipboard": "^2.0.11", |
14 | "core-js": "^3.6.5", | 14 | "core-js": "^3.6.5", |
15 | "echarts": "^4.6.0", | 15 | "echarts": "^5.3.3", |
16 | "file-saver": "^2.0.5", | 16 | "file-saver": "^2.0.5", |
17 | "js-cookie": "2.2.0", | 17 | "js-cookie": "2.2.0", |
18 | "jsoneditor": "^9.9.2", | 18 | "jsoneditor": "^9.9.2", | ... | ... |
1 | /* | ||
2 | * @Author: yangwei | ||
3 | * @Date: 2023-01-16 09:10:12 | ||
4 | * @LastEditors: yangwei | ||
5 | * @LastEditTime: 2023-03-16 09:33:27 | ||
6 | * @FilePath: \bdcjg-web\src\main.js | ||
7 | * @Description: | ||
8 | * | ||
9 | * Copyright (c) 2023 by ${yangwei}, All Rights Reserved. | ||
10 | */ | ||
1 | import Vue from 'vue' | 11 | import Vue from 'vue' |
2 | import App from './App' | 12 | import App from './App' |
3 | import 'normalize.css/normalize.css' // a modern alternative to CSS resets | 13 | import 'normalize.css/normalize.css' // a modern alternative to CSS resets |
... | @@ -8,7 +18,8 @@ import Base from './base' // 全局组件引入 | ... | @@ -8,7 +18,8 @@ import Base from './base' // 全局组件引入 |
8 | import mixin from '@/utils/mixin/theme.js' | 18 | import mixin from '@/utils/mixin/theme.js' |
9 | 19 | ||
10 | import dataV from '@jiaminghi/data-view'; | 20 | import dataV from '@jiaminghi/data-view'; |
11 | import echarts from "echarts" | 21 | import * as echarts from "echarts" |
22 | |||
12 | import { startLoadingAddCount, endLoadingSubCount } from './utils/requestLoading' | 23 | import { startLoadingAddCount, endLoadingSubCount } from './utils/requestLoading' |
13 | Vue.mixin(mixin) | 24 | Vue.mixin(mixin) |
14 | import './directive/vxe-table' | 25 | import './directive/vxe-table' | ... | ... |
-
Please register or sign in to post a comment