Vuetify Version: 2.0.5
Vue Version: 2.6.10
Browsers: Chrome 76.0.3809.100
OS: Windows 8.1
Click the append button to see the outline intersect the label
Outline does not intersect label
Outline intersects the label
2.0.7 still has the same problem if the text field is hidden in an expansion panel. See updated pen: https://codepen.io/perlinden/pen/yLBOXpm
@jacekkarczmarczyk I suspect this could be fixed by using an immediate watcher such as this
watch: {
label: {
immediate: true,
handler(newVal, oldVal) {
this.$nextTick(this.setLabelWidth)
},
},
}
Most helpful comment
2.0.7 still has the same problem if the text field is hidden in an expansion panel. See updated pen: https://codepen.io/perlinden/pen/yLBOXpm