[Vuejs]-VueJS + ElementUI – el-table resizing issue in div

1πŸ‘

βœ…

I had the same issue, I solved setting a max-width to the containers, for example

.outerContainer, .innerContainer {
    max-width: 100%;
}

Try it and let me know if it works also for you πŸ™‚

πŸ‘€user1518217

Leave a comment