We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddd7793 commit 9d72d29Copy full SHA for 9d72d29
src/views/template/content/List.vue
@@ -290,4 +290,5 @@ export default defineComponent({
290
.cell{
291
.el-button{ margin: 3px;}
292
}
293
+.el-dropdown-menu{ max-height: 260px;}
294
</style>
vue.config.js
@@ -28,12 +28,12 @@ module.exports = {
28
config.optimization.minimize(true);
29
config.optimization.splitChunks({
30
chunks: 'all',
31
+ maxSize: 300000,
32
cacheGroups: {
33
vendors: { //vendor 是导入的第三方依赖包
34
name: 'chunk-vendors',
35
test: /[\\/]node_modules[\\/]/,
36
chunks: 'initial',
- maxSize: 300000,
37
priority: 1 //优先级:数字越大优先级越高
38
},
39
elementPlus: {
0 commit comments