Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
"@arco-design/web-vue": "^2.57.0",
"axios": "^1.12.2",
"dayjs": "^1.11.18",
"default-passive-events": "^4.0.0",
"echarts": "^5.6.0",
"http-proxy-middleware": "^2.0.9",
"lodash": "^4.17.21",
Expand Down
3 changes: 3 additions & 0 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ import App from './App.vue';
// 手动导入,防止由于插件导致全局css顺序不同,使dev和build模式下样式不完全相同
import '@arco-design/web-vue/es/style/index.less';
import './styles/tailwind.css';
// 解决 chrome 的性能 waring,默认不阻止滑动事件
// 参考 https://www.chromestatus.com/feature/5745543795965952
import 'default-passive-events';

// 全量引入样式
// import '@arco-design/web-vue/dist/arco.css';
Expand Down