Posts by Luciano Meireles • 21 points
2 posts
-
0
votes2
answers512
viewsA: Modal Assync Vuejs
First I would recommend instantiating the CRUD object only when necessary. So: <modal-dinamic :propE="Prop" v-if="exibirModal"></modal-dinamic> Another option would be to control the…
-
2
votes3
answers950
viewsA: How to limit the characters of a label?
You can also make this approach using only HTML and CSS: label{ overflow: hidden; text-overflow: ellipsis; white-space: nowrap; word-wrap: hyphenate; max-width: 100px; display: block; } label >…