el-menu 设置最小宽度
时间: 2023-10-02 18:14:13 浏览: 83
改变el-table宽度
5星 · 资源好评率100%
可以使用 `min-width` 属性来设置 `el-menu` 的最小宽度。具体做法如下:
```html
<template>
<el-menu :style="{ 'min-width': '200px' }">
<!-- el-menu 的内容 -->
</el-menu>
</template>
```
在上述代码中,我们使用了 `:style` 绑定了一个样式对象,其中包含了 `min-width` 属性,它的值为 `200px`,表示 `el-menu` 的最小宽度为 `200px`。你可以根据自己的需求来设置最小宽度的值。
阅读全文